diff --git a/src/app/components/CallEmbedProvider.tsx b/src/app/components/CallEmbedProvider.tsx index 5c8431fed..17d431628 100644 --- a/src/app/components/CallEmbedProvider.tsx +++ b/src/app/components/CallEmbedProvider.tsx @@ -456,12 +456,25 @@ export function CallEmbedProvider({ children }: CallEmbedProviderProps) { const el = callEmbedRef.current; if (el) { console.log('[CallEmbed] container styles:', { - top: el.style.top, left: el.style.left, - width: el.style.width, height: el.style.height, - visibility: el.style.visibility, bottom: el.style.bottom, right: el.style.right, + top: el.style.top, + left: el.style.left, + width: el.style.width, + height: el.style.height, + visibility: el.style.visibility, + bottom: el.style.bottom, + right: el.style.right, }); } - }, [callEmbed?.roomId, selectedRoom, joined, inCallRoom, callVisible, pipMode, chatOnlyView, callEmbedRef]); + }, [ + callEmbed?.roomId, + selectedRoom, + joined, + inCallRoom, + callVisible, + pipMode, + chatOnlyView, + callEmbedRef, + ]); React.useEffect(() => { const el = callEmbedRef.current; diff --git a/src/app/hooks/useCallEmbed.ts b/src/app/hooks/useCallEmbed.ts index 94552c4ae..052bd7c39 100644 --- a/src/app/hooks/useCallEmbed.ts +++ b/src/app/hooks/useCallEmbed.ts @@ -156,7 +156,10 @@ export const useCallEmbedPlacementSync = (containerViewRef: RefObject