Don't show call banners in video rooms (#9441)

pull/28217/head
Robin 2022-10-17 23:47:05 -04:00 committed by GitHub
parent 10a429c68d
commit 57eec824d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -734,7 +734,7 @@ export default class RoomHeader extends React.Component<IProps, IState> {
{ betaPill }
{ buttons }
</div>
<RoomCallBanner roomId={this.props.room.roomId} />
{ !isVideoRoom && <RoomCallBanner roomId={this.props.room.roomId} /> }
<RoomLiveShareWarning roomId={this.props.room.roomId} />
</header>
);