Fix logic for hiding the logo.

Was shown on embedded mobile on wide screens.
This commit is contained in:
Timo K
2026-04-10 17:52:56 +02:00
parent 9de5938e79
commit 134fdeef3a

View File

@@ -568,7 +568,8 @@ export const InCallView: FC<InCallViewProps> = ({
asOverlay={windowMode === "flat"}
showFooter={showFooter}
showControls={showControls}
hideLogo={headerStyle === HeaderStyle.None}
// Hide the logo for both embedded solutions. mobile: HeaderStyle.AppBar and desktop: HeaderStyle.None.
hideLogo={headerStyle !== HeaderStyle.Standard}
hideSettingsButton={headerStyle === HeaderStyle.AppBar}
asPip={layout.type === "pip"}
gridMode={gridMode}