diff --git a/frontend/src/stores/canvas.ts b/frontend/src/stores/canvas.ts
index 3a49cff..06bbbbc 100644
--- a/frontend/src/stores/canvas.ts
+++ b/frontend/src/stores/canvas.ts
@@ -35,6 +35,7 @@ export const useCanvasStore = defineStore('canvas', () => {
const history = ref([])
const notifications = ref([])
const showHistoryPanel = ref(false)
+ const isAnonymousCanvas = ref(false)
let notificationId = 0
@@ -111,6 +112,8 @@ export const useCanvasStore = defineStore('canvas', () => {
connectionError,
connectionInfo,
statusColor,
+ // Canvas mode
+ isAnonymousCanvas,
// History & UI
history,
notifications,