fix backup iframe visibility

This commit is contained in:
Gigiaj 2025-05-11 18:53:05 -05:00
parent 4486ef1e72
commit 59a936b094

View file

@ -262,7 +262,7 @@ export function PersistentCallContainer({ children }: PersistentCallContainerPro
width: '100%', width: '100%',
height: '100%', height: '100%',
border: 'none', border: 'none',
display: !isPrimaryIframe && isViewingActiveCall ? 'flex' : 'none', display: !isPrimaryIframe || isViewingActiveCall ? 'flex' : 'none',
}} }}
title={`Persistent Element Call`} title={`Persistent Element Call`}
sandbox="allow-forms allow-scripts allow-same-origin allow-popups allow-modals allow-downloads" sandbox="allow-forms allow-scripts allow-same-origin allow-popups allow-modals allow-downloads"