Hide participant list button on direct calls

This commit is contained in:
Evan Hahn 2021-10-07 15:50:57 -05:00 committed by GitHub
parent 9f13fd7484
commit 5284497d4d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -44,7 +44,7 @@ export const CallingHeader = ({
<div className="module-ongoing-call__header-message">{message}</div>
) : null}
<div className="module-calling-tools">
{participantCount ? (
{isGroupCall && participantCount ? (
<div className="module-calling-tools__button">
<Tooltip
content={i18n('calling__participants', [String(participantCount)])}