From 2fb5de3ba28d0936f25ea99feb16afe66aa53597 Mon Sep 17 00:00:00 2001 From: Valere Fedronic Date: Wed, 20 May 2026 14:50:56 +0200 Subject: [PATCH] review: eqeqe Co-authored-by: Robin --- src/state/CallViewModel/CallViewModel.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/state/CallViewModel/CallViewModel.ts b/src/state/CallViewModel/CallViewModel.ts index 63214a4a..3a3e57d7 100644 --- a/src/state/CallViewModel/CallViewModel.ts +++ b/src/state/CallViewModel/CallViewModel.ts @@ -1341,7 +1341,7 @@ export function createCallViewModel$( // Layout is edge-to-edge; show/hide the footer in response to interactions return windowMode$.pipe( switchMap((mode) => { - if (mode == "pip" && platform != "desktop") { + if (mode === "pip" && platform !== "desktop") { // No controls are shown in mobile pip as interactions are disabled return of(false); }