From f32732731cf7494bc93e08b5aae49c13fac30244 Mon Sep 17 00:00:00 2001 From: Jan Starzak Date: Mon, 12 Feb 2024 16:59:30 +0100 Subject: [PATCH] chore: remove unused arguments --- .../apps/client/src/hooks/useKeepRundownOutputInPosition.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/apps/client/src/hooks/useKeepRundownOutputInPosition.ts b/packages/apps/client/src/hooks/useKeepRundownOutputInPosition.ts index 9a12dfe..a39a3ec 100644 --- a/packages/apps/client/src/hooks/useKeepRundownOutputInPosition.ts +++ b/packages/apps/client/src/hooks/useKeepRundownOutputInPosition.ts @@ -94,12 +94,12 @@ function observeUIRundown(rundown: UIRundown | null, clb: Lambda): Lambda { const destructors: Lambda[] = [] destructors.push( - observe(rundown, 'name', (change) => { + observe(rundown, 'name', () => { // console.log('rundown:name', change) clb() }), - observe(rundown, 'ready', (change) => { + observe(rundown, 'ready', () => { // console.log('rundown:ready', change) clb() @@ -139,7 +139,7 @@ function observeUISegment(segment: UISegment | null, clb: Lambda): Lambda { const destructors: Lambda[] = [] destructors.push( - observe(segment, (change) => { + observe(segment, () => { // console.log('segment', change) clb()