From 134fdeef3afb2fe0ce0b5fca2a37539f256b5f6d Mon Sep 17 00:00:00 2001 From: Timo K Date: Fri, 10 Apr 2026 17:52:56 +0200 Subject: [PATCH] Fix logic for hiding the logo. Was shown on embedded mobile on wide screens. --- src/room/InCallView.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/room/InCallView.tsx b/src/room/InCallView.tsx index ca4f508e..340cb42a 100644 --- a/src/room/InCallView.tsx +++ b/src/room/InCallView.tsx @@ -568,7 +568,8 @@ export const InCallView: FC = ({ 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}