From 1eec7314e8b9f8505f9089c07de7fbad93d52fc0 Mon Sep 17 00:00:00 2001 From: Robin Date: Fri, 17 Oct 2025 11:22:23 -0400 Subject: [PATCH] Remove unnecessary lint suppressions --- src/state/CallViewModel.test.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/state/CallViewModel.test.ts b/src/state/CallViewModel.test.ts index ef4ef762..f6a5892a 100644 --- a/src/state/CallViewModel.test.ts +++ b/src/state/CallViewModel.test.ts @@ -193,7 +193,6 @@ function summarizeLayout$(l$: Observable): Observable { l.spotlight?.media$ ?? constant(undefined), ...l.grid.map((vm) => vm.media$), ], - // eslint-disable-next-line rxjs/finnish -- false positive (spotlight, ...grid) => ({ type: l.type, spotlight: spotlight?.map((vm) => vm.id), @@ -213,7 +212,6 @@ function summarizeLayout$(l$: Observable): Observable { case "spotlight-expanded": return combineLatest( [l.spotlight.media$, l.pip?.media$ ?? constant(undefined)], - // eslint-disable-next-line rxjs/finnish -- false positive (spotlight, pip) => ({ type: l.type, spotlight: spotlight.map((vm) => vm.id),