From af3af9c857ae746cb854184dc0dcc5e4e57dad6f Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Sat, 11 Apr 2026 03:49:10 +0200 Subject: [PATCH] Rename initialDocument to initialProjectDocument in createEditorStore --- src/main.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.tsx b/src/main.tsx index 0e047f86..bb9a15f3 100644 --- a/src/main.tsx +++ b/src/main.tsx @@ -15,7 +15,7 @@ if (rootElement === null) { const storageAccess = getBrowserStorageAccess(); const bootstrapResult = loadOrCreateSceneDocument(storageAccess.storage); const editorStore = createEditorStore({ - initialDocument: bootstrapResult.document, + initialProjectDocument: bootstrapResult.document, initialViewportLayoutState: bootstrapResult.viewportLayoutState ?? undefined, storage: storageAccess.storage });