Show loading state while joining a group call

This commit is contained in:
Rashad Sookram 2022-05-16 10:59:10 -04:00 committed by GitHub
parent dfd1190e8b
commit 0a0b5a7bfe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -211,7 +211,7 @@ const ActiveCallManager: React.FC<ActiveCallManagerPropsType> = ({
break;
}
case CallMode.Group: {
showCallLobby = activeCall.joinState === GroupCallJoinState.NotJoined;
showCallLobby = activeCall.joinState !== GroupCallJoinState.Joined;
isCallFull = activeCall.deviceCount >= activeCall.maxDevices;
({ groupMembers } = activeCall);
break;