Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit 57eec82

Browse files
authored
Don't show call banners in video rooms (#9441)
1 parent 10a429c commit 57eec82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/views/rooms/RoomHeader.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -734,7 +734,7 @@ export default class RoomHeader extends React.Component<IProps, IState> {
734734
{ betaPill }
735735
{ buttons }
736736
</div>
737-
<RoomCallBanner roomId={this.props.room.roomId} />
737+
{ !isVideoRoom && <RoomCallBanner roomId={this.props.room.roomId} /> }
738738
<RoomLiveShareWarning roomId={this.props.room.roomId} />
739739
</header>
740740
);

0 commit comments

Comments
 (0)