diff --git a/src/room/GroupCallView.tsx b/src/room/GroupCallView.tsx index 9ef46fc7..95b77e73 100644 --- a/src/room/GroupCallView.tsx +++ b/src/room/GroupCallView.tsx @@ -436,7 +436,7 @@ export const GroupCallView: FC = ({ muteStates={muteStates} onEnter={() => setJoined(true)} confineToRoom={confineToRoom} - hideHeader={header === HeaderStyle.None} + hideHeader={header !== HeaderStyle.Standard} participantCount={participantCount} onShareClick={onShareClick} /> diff --git a/src/room/InCallView.tsx b/src/room/InCallView.tsx index ae2a8550..133620f9 100644 --- a/src/room/InCallView.tsx +++ b/src/room/InCallView.tsx @@ -363,7 +363,6 @@ export const InCallView: FC = ({ switch (headerStyle) { case HeaderStyle.AppBar: { // dont build a header here. The AppBar will take care of it. - header = null; break; } case HeaderStyle.None: diff --git a/src/room/LobbyView.tsx b/src/room/LobbyView.tsx index 31707c22..ae2f8f29 100644 --- a/src/room/LobbyView.tsx +++ b/src/room/LobbyView.tsx @@ -226,6 +226,8 @@ export const LobbyView: FC = ({ toggleVideo={toggleVideo ?? undefined} openSettings={openSettings} hangup={!confineToRoom ? onLeaveClick : undefined} + // Logo and header are connected. We will only show the logo in SPA with header. + hideLogo={hideHeader} > {recentsButtonInFooter && recentsButton}