diff --git a/react/features/base/participants/subscriber.ts b/react/features/base/participants/subscriber.ts index b385ff3a376..a50870fa970 100644 --- a/react/features/base/participants/subscriber.ts +++ b/react/features/base/participants/subscriber.ts @@ -40,7 +40,8 @@ StateListenerRegistry.register( if (raisedHandsQueue.length && isNextToSpeak(store.getState()) && !hasBeenNotified(store.getState()) - && !getDisableNextSpeakerNotification(store.getState())) { + && !getDisableNextSpeakerNotification(store.getState()) + && !store.getState()['features/visitors'].iAmVisitor) { // visitors raise hand to be promoted _notifyNextSpeakerInRaisedHandQueue(store); } if (!raisedHandsQueue[0]) { diff --git a/react/features/visitors/components/web/JoinMeetingDialog.tsx b/react/features/visitors/components/web/JoinMeetingDialog.tsx index 385b1903baa..5a6b0c384fb 100644 --- a/react/features/visitors/components/web/JoinMeetingDialog.tsx +++ b/react/features/visitors/components/web/JoinMeetingDialog.tsx @@ -3,7 +3,6 @@ import React from 'react'; import { useTranslation } from 'react-i18next'; import { makeStyles } from 'tss-react/mui'; -import { IconArrowUp } from '../../../base/icons/svg'; import ToolboxButtonWithPopup from '../../../base/toolbox/components/web/ToolboxButtonWithPopup'; import Dialog from '../../../base/ui/components/web/Dialog'; import { RaiseHandButton } from '../../../reactions/components/web/RaiseHandButton'; @@ -55,8 +54,6 @@ export default function JoinMeetingDialog() {
{t('visitors.joinMeeting.raiseHand')}