From b25be0d036323a6854d61b87e975c6cba3b7441a Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Sat, 11 Apr 2026 03:49:16 +0200 Subject: [PATCH] Extract sceneList from editorState.projectDocument.scenes --- src/app/App.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/App.tsx b/src/app/App.tsx index b4a2307c..b7e74997 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -1095,6 +1095,7 @@ function createProjectDownloadName(documentName: string): string { export function App({ store, initialStatusMessage }: AppProps) { const editorState = useEditorStoreState(store); + const sceneList = Object.values(editorState.projectDocument.scenes); const brushList = Object.values(editorState.document.brushes); const layoutMode = editorState.viewportLayoutMode; const activePanelId = editorState.activeViewportPanelId;