Skip to content

Commit

Permalink
fix lower hand for remote participant (#205)
Browse files Browse the repository at this point in the history
  • Loading branch information
rzdor authored Dec 10, 2023
1 parent b99f845 commit 18316d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Project/src/MakeCall/RemoteParticipantCard.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 18316d9

Please sign in to comment.