From c0eb4ed320c3e63017623dc6b4f64970eb3be818 Mon Sep 17 00:00:00 2001 From: empty Date: Wed, 7 Jan 2026 00:31:50 +0800 Subject: [PATCH] fix: Add onClick handlers to top Settings and Save buttons with alerts --- frontend/src/app/editor/page.tsx | 36 +++++++++++++++++++++++++++++--- 1 file changed, 33 insertions(+), 3 deletions(-) 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() {
- -