diff --git a/react/features/base/participants/reducer.js b/react/features/base/participants/reducer.js index 04e9d959b..f94bed66f 100644 --- a/react/features/base/participants/reducer.js +++ b/react/features/base/participants/reducer.js @@ -276,6 +276,7 @@ ReducerRegistry.register('features/base/participants', (state = DEFAULT_STATE, a } state.sortedRemoteParticipants.delete(id); + state.raisedHandsQueue = state.raisedHandsQueue.filter(pid => pid.id !== id); if (!state.everyoneIsModerator && !isParticipantModerator(oldParticipant)) { state.everyoneIsModerator = _isEveryoneModerator(state);