fix: Raised hand state (#12671)
This commit is contained in:
parent
9fbbe05d6c
commit
c399fd1f49
|
@ -249,7 +249,7 @@ MiddlewareRegistry.register(store => next => action => {
|
|||
|
||||
case RAISE_HAND_UPDATED: {
|
||||
const { participant } = action;
|
||||
let queue = getRaiseHandsQueue(store.getState());
|
||||
let queue = [ ...getRaiseHandsQueue(store.getState()) ];
|
||||
|
||||
if (participant.raisedHandTimestamp) {
|
||||
queue.push({
|
||||
|
|
Loading…
Reference in New Issue