fix: Update UI store types to include comfy tab

This commit is contained in:
SysVis AI 2026-01-05 18:46:12 +07:00
parent 9d540468bd
commit 5051c0ff72

View file

@ -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;