diff --git a/frontend/src/app/editor/page.tsx b/frontend/src/app/editor/page.tsx index 25d0949..f1574e4 100644 --- a/frontend/src/app/editor/page.tsx +++ b/frontend/src/app/editor/page.tsx @@ -74,6 +74,9 @@ export default function EditorPage() { const [exportDownloadUrl, setExportDownloadUrl] = useState(null) const [exportError, setExportError] = useState(null) + // Save all state + const [isSavingAll, setIsSavingAll] = useState(false) + useEffect(() => { async function loadStoryboard() { // Get storyboard_id from URL, default to demo-1 @@ -160,12 +163,39 @@ export default function EditorPage() {
- -