From 5051c0ff728ba298ca7cdf25e51e1af2cf46164b Mon Sep 17 00:00:00 2001 From: SysVis AI Date: Mon, 5 Jan 2026 18:46:12 +0700 Subject: [PATCH] fix: Update UI store types to include comfy tab --- src/store/uiStore.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/store/uiStore.ts b/src/store/uiStore.ts index 1757644..222859c 100644 --- a/src/store/uiStore.ts +++ b/src/store/uiStore.ts @@ -14,7 +14,7 @@ interface UIState { // Input Panel persistence inputDescription: string; - inputActiveTab: 'image' | 'code' | 'describe'; + inputActiveTab: 'image' | 'code' | 'describe' | 'comfy'; inputImageUrl: string | null; mermaidCode: string; @@ -37,7 +37,7 @@ interface UIState { // Input Panel actions setInputDescription: (description: string) => void; - setInputActiveTab: (tab: 'image' | 'code' | 'describe') => void; + setInputActiveTab: (tab: 'image' | 'code' | 'describe' | 'comfy') => void; setInputImageUrl: (url: string | null) => void; setMermaidCode: (code: string) => void; clearInputs: () => void;