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

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;