fix logo in lobby

This commit is contained in:
Timo K
2026-04-15 11:46:08 +02:00
parent 242c40af14
commit b59600099d
3 changed files with 3 additions and 2 deletions

View File

@@ -436,7 +436,7 @@ export const GroupCallView: FC<Props> = ({
muteStates={muteStates}
onEnter={() => setJoined(true)}
confineToRoom={confineToRoom}
hideHeader={header === HeaderStyle.None}
hideHeader={header !== HeaderStyle.Standard}
participantCount={participantCount}
onShareClick={onShareClick}
/>

View File

@@ -363,7 +363,6 @@ export const InCallView: FC<InCallViewProps> = ({
switch (headerStyle) {
case HeaderStyle.AppBar: {
// dont build a header here. The AppBar will take care of it.
header = null;
break;
}
case HeaderStyle.None:

View File

@@ -226,6 +226,8 @@ export const LobbyView: FC<Props> = ({
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}
</CallFooter>