diff --git a/src/app/App.tsx b/src/app/App.tsx index e0c58a7a..ad7e6465 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -1102,6 +1102,8 @@ function createProjectDownloadName(documentName: string): string { export function App({ store, initialStatusMessage }: AppProps) { const editorState = useEditorStoreState(store); const sceneList = Object.values(editorState.projectDocument.scenes); + const activeProjectScene = + editorState.projectDocument.scenes[editorState.activeSceneId]; const brushList = Object.values(editorState.document.brushes); const layoutMode = editorState.viewportLayoutMode; const activePanelId = editorState.activeViewportPanelId;