fix rebase errors

This commit is contained in:
bymyself
2025-06-21 15:27:59 -07:00
committed by Jin Yi
parent cc7c36620f
commit db8563c5d1
2 changed files with 9 additions and 2 deletions

View File

@@ -59,3 +59,10 @@ export function isMergedNodePack(
): pack is MergedNodePack {
return 'comfy_nodes' in pack && Array.isArray(pack.comfy_nodes)
}
export interface ManagerState {
selectedTabId: ManagerTab
searchQuery: string
searchMode: 'nodes' | 'packs'
sortField: string
}