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 ):