From 18316d93c19d9d7e1648333337a2275c5531206e Mon Sep 17 00:00:00 2001 From: Ruslan Zdor <99833343+rzdor@users.noreply.github.com> Date: Sun, 10 Dec 2023 12:48:24 -0800 Subject: [PATCH] fix lower hand for remote participant (#205) --- Project/src/MakeCall/RemoteParticipantCard.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project/src/MakeCall/RemoteParticipantCard.js b/Project/src/MakeCall/RemoteParticipantCard.js index d39e4dd4..bf24f586 100644 --- a/Project/src/MakeCall/RemoteParticipantCard.js +++ b/Project/src/MakeCall/RemoteParticipantCard.js @@ -100,7 +100,7 @@ export default class RemoteParticipantCard extends React.Component { async handleRemoteRaiseHand() { try { if (this.state.isHandRaised) { - await this.raiseHandFeature.lowerHand([this.remoteParticipant.identifier]); + await this.raiseHandFeature.lowerHands([this.remoteParticipant.identifier]); this.setState({isHandRaised: utils.isParticipantHandRaised(this.remoteParticipant.identifier, this.raiseHandFeature.getRaisedHands())}) } } catch(error) {