From 1cdc0680e8a9dcab2c1258a7565b78f1cf489de5 Mon Sep 17 00:00:00 2001 From: Gigiaj Date: Fri, 9 May 2025 14:17:39 -0500 Subject: [PATCH] correctly provide visibility --- src/app/pages/call/PersistentCallContainer.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/app/pages/call/PersistentCallContainer.tsx b/src/app/pages/call/PersistentCallContainer.tsx index 61849416..593446ad 100644 --- a/src/app/pages/call/PersistentCallContainer.tsx +++ b/src/app/pages/call/PersistentCallContainer.tsx @@ -179,7 +179,7 @@ export function PersistentCallContainer({ children }: PersistentCallContainerPro position: 'absolute', top: 0, left: 0, - display: isPrimaryIframe || isViewingActiveCall ? 'none' : 'none', + display: isPrimaryIframe || isViewingActiveCall ? 'flex' : 'none', width: '100%', height: '100%', border: 'none', @@ -198,8 +198,7 @@ export function PersistentCallContainer({ children }: PersistentCallContainerPro width: '100%', height: '100%', border: 'none', - - display: !isPrimaryIframe || isViewingActiveCall ? 'none' : 'flex', + display: !isPrimaryIframe || isViewingActiveCall ? 'flex' : 'none', }} title={`Persistent Element Call`} sandbox="allow-forms allow-scripts allow-same-origin allow-popups allow-modals allow-downloads"