From d4d539657243ad2b92f29e5f7b8bbdd206eb223d Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Tue, 14 Apr 2026 19:57:14 +0200 Subject: [PATCH] Add selectedDialogueId state in App.tsx --- src/app/App.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/app/App.tsx b/src/app/App.tsx index cc522907..f0296c5b 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -2142,6 +2142,9 @@ export function App({ store, initialStatusMessage }: AppProps) { const [selectedScheduleRoutineId, setSelectedScheduleRoutineId] = useState< string | null >(null); + const [selectedDialogueId, setSelectedDialogueId] = useState( + null + ); const [ worldDawnAmbientIntensityFactorDraft, setWorldDawnAmbientIntensityFactorDraft