From 8e209ecb51bf5698d40e14b79eb1d06cb7065411 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Wed, 15 Apr 2026 07:26:58 +0200 Subject: [PATCH] Remove unused variables in App.tsx --- src/app/App.tsx | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/src/app/App.tsx b/src/app/App.tsx index 56ebe03c..8a0614e7 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -2066,26 +2066,6 @@ export function App({ store, initialStatusMessage }: AppProps) { const projectImpulseSequenceList = projectSequenceList.filter( (sequence) => getProjectSequenceImpulseSteps(sequence).length > 0 ); - const sequenceAnimationTargetOptions = projectScheduleTargetOptions - .filter( - (option) => - option.target.kind === "modelInstance" && - (option.defaults.animationClipNames?.length ?? 0) > 0 - ) - .map((option) => ({ - targetKey: option.key, - label: `${option.groupLabel} · ${option.label}` - })); - const sequenceSoundTargetOptions = projectScheduleTargetOptions - .filter( - (option) => - option.target.kind === "entity" && - option.target.entityKind === "soundEmitter" - ) - .map((option) => ({ - targetKey: option.key, - label: `${option.groupLabel} · ${option.label}` - })); const selectedInteractionSource = isInteractionSourceEntity(selectedEntity) ? selectedEntity : null;