From 3ed30308ee687c6157439babe9b82a50f78eaedc Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Tue, 14 Apr 2026 23:44:21 +0200 Subject: [PATCH] Update App component to include sequences and handle sequence ID changes --- src/app/App.tsx | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/app/App.tsx b/src/app/App.tsx index 3255d572..d9e67b81 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -11286,6 +11286,7 @@ export function App({ store, initialStatusMessage }: AppProps) { + updateProjectScheduleRoutine( + routineId, + "Set project sequencer sequence", + sequenceId === null + ? "Routine now uses inline effects." + : "Routine now resolves a project sequence.", + (routine) => { + routine.sequenceId = sequenceId; + } + ) + } onSetRoutineEffectOption={(routineId, effectOptionId) => updateProjectScheduleRoutine( routineId,