From f4cf3d8c62bc5e0a22fc297aa8104bc69428a32c Mon Sep 17 00:00:00 2001 From: Robin Date: Tue, 6 Aug 2024 10:08:56 -0400 Subject: [PATCH] Adjust the breakpoint --- src/state/CallViewModel.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/state/CallViewModel.ts b/src/state/CallViewModel.ts index a4db2232..dcbb93cf 100644 --- a/src/state/CallViewModel.ts +++ b/src/state/CallViewModel.ts @@ -520,7 +520,7 @@ export class CallViewModel extends ViewModel { const height = window.innerHeight; const width = window.innerWidth; if (height <= 400 && width <= 340) return "pip"; - if (width <= 660) return "narrow"; + if (width <= 600) return "narrow"; if (height <= 660) return "flat"; return "normal"; }),