From 59a936b094df3c264715a7e59690fcd61be0208e Mon Sep 17 00:00:00 2001 From: Gigiaj Date: Sun, 11 May 2025 18:53:05 -0500 Subject: [PATCH] fix backup iframe visibility --- src/app/pages/call/PersistentCallContainer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/pages/call/PersistentCallContainer.tsx b/src/app/pages/call/PersistentCallContainer.tsx index 8c6eb346..88c2fa96 100644 --- a/src/app/pages/call/PersistentCallContainer.tsx +++ b/src/app/pages/call/PersistentCallContainer.tsx @@ -262,7 +262,7 @@ export function PersistentCallContainer({ children }: PersistentCallContainerPro width: '100%', height: '100%', border: 'none', - display: !isPrimaryIframe && isViewingActiveCall ? 'flex' : 'none', + display: !isPrimaryIframe || isViewingActiveCall ? 'flex' : 'none', }} title={`Persistent Element Call`} sandbox="allow-forms allow-scripts allow-same-origin allow-popups allow-modals allow-downloads"