Ensure clicking 'message' in contact modal un-pips the active call
This commit is contained in:
parent
9ff6c75eb9
commit
cb40adfa55
1 changed files with 1 additions and 1 deletions
|
@ -149,7 +149,7 @@ export const isInCall = createSelector(
|
|||
export const isInFullScreenCall = createSelector(
|
||||
getActiveCallState,
|
||||
(activeCallState: undefined | ActiveCallStateType): boolean =>
|
||||
Boolean(activeCallState?.pip)
|
||||
Boolean(activeCallState && !activeCallState.pip)
|
||||
);
|
||||
|
||||
export const getIncomingCall = createSelector(
|
||||
|
|
Loading…
Add table
Reference in a new issue