From f4ffc7fa3521d45a80e422cc49daf1e209fe8668 Mon Sep 17 00:00:00 2001 From: Austin Mroz Date: Sat, 17 Jan 2026 09:39:58 -0800 Subject: [PATCH] Fix test Issues here have been particularly frustrating to work around. I'll need to find a proper solution at some point --- src/stores/nodeDefStore.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/stores/nodeDefStore.ts b/src/stores/nodeDefStore.ts index 849865941..f0d70c914 100644 --- a/src/stores/nodeDefStore.ts +++ b/src/stores/nodeDefStore.ts @@ -3,6 +3,8 @@ import _ from 'es-toolkit/compat' import { defineStore } from 'pinia' import { computed, ref } from 'vue' +import { useSubgraphStore } from '@/stores/subgraphStore' + import { isProxyWidget } from '@/core/graph/subgraph/proxyWidget' import type { LGraphNode } from '@/lib/litegraph/src/litegraph' import { transformNodeDefV1ToV2 } from '@/schemas/nodeDef/migration' @@ -17,7 +19,6 @@ import type { ComfyOutputTypesSpec as ComfyOutputSpecV1 } from '@/schemas/nodeDefSchema' import { NodeSearchService } from '@/services/nodeSearchService' -import { useSubgraphStore } from '@/stores/subgraphStore' import { NodeSourceType, getNodeSource } from '@/types/nodeSource' import type { NodeSource } from '@/types/nodeSource' import type { TreeNode } from '@/types/treeExplorerTypes'