Remove unused variables in App.tsx

This commit is contained in:
2026-04-15 07:26:58 +02:00
parent 07b27b388e
commit 8e209ecb51

View File

@@ -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;