From 124e572083c9327834d80fc783c2c9cc17e76978 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Wed, 15 Apr 2026 01:44:33 +0200 Subject: [PATCH] Remove unused function getSequenceVisibilityTargetKey in App.tsx --- src/app/App.tsx | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/app/App.tsx b/src/app/App.tsx index e8de1b88..3c898292 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -1338,18 +1338,6 @@ function readVisibilityModeSelectValue( } } -function getSequenceVisibilityTargetKey(target: { - kind: "brush"; - brushId: string; -} | { - kind: "modelInstance"; - modelInstanceId: string; -}): string { - return target.kind === "brush" - ? `brush:${target.brushId}` - : `modelInstance:${target.modelInstanceId}`; -} - function readSequenceVisibilityTargetKey( value: string ):