diff --git a/react/features/participants-pane/components/native/ParticipantsPane.js b/react/features/participants-pane/components/native/ParticipantsPane.js index cfecfca6f..b9aecca89 100644 --- a/react/features/participants-pane/components/native/ParticipantsPane.js +++ b/react/features/participants-pane/components/native/ParticipantsPane.js @@ -35,7 +35,7 @@ const ParticipantsPane = () => { const isLocalModerator = useSelector(isLocalParticipantModerator); const participantsCount = useSelector(getParticipantCount); const everyoneModerator = useSelector(isEveryoneModerator); - const showContextMenu = true; + const showContextMenu = !everyoneModerator && participantsCount > 2; const muteAll = useCallback(() => dispatch(openDialog(MuteEveryoneDialog)), [ dispatch ]); const { t } = useTranslation();