From b05c4234b7309ee8886bed2b1e4ef135e7ebc64a Mon Sep 17 00:00:00 2001 From: Timo <16718859+toger5@users.noreply.github.com> Date: Thu, 25 Jul 2024 11:32:05 +0200 Subject: [PATCH] Remove hide header condition (#2493) --- src/room/InCallView.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/room/InCallView.tsx b/src/room/InCallView.tsx index 43808b8e4..69ae715be 100644 --- a/src/room/InCallView.tsx +++ b/src/room/InCallView.tsx @@ -441,7 +441,6 @@ export const InCallView: FC = ({ data-testid="incall_videomute" />, ); - if (!reducedControls) { if (canScreenshare && !hideScreensharing) { buttons.push( @@ -486,7 +485,7 @@ export const InCallView: FC = ({ )} {showControls &&
{buttons}
} - {!mobile && !hideHeader && showControls && ( + {!mobile && showControls && (