From 7461c911853067dbd79a9cf6374f6ca9dab7d10a Mon Sep 17 00:00:00 2001 From: filtered <176114999+webfiltered@users.noreply.github.com> Date: Tue, 16 Sep 2025 20:48:14 +1000 Subject: [PATCH] Fix import - loading module at runtime solely to get type --- src/composables/nodePack/useMissingNodes.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/composables/nodePack/useMissingNodes.ts b/src/composables/nodePack/useMissingNodes.ts index f913ae976..d09b736ae 100644 --- a/src/composables/nodePack/useMissingNodes.ts +++ b/src/composables/nodePack/useMissingNodes.ts @@ -2,7 +2,7 @@ import { groupBy } from 'es-toolkit/compat' import { computed, onMounted } from 'vue' import { useWorkflowPacks } from '@/composables/nodePack/useWorkflowPacks' -import { type NodeProperty } from '@/lib/litegraph/src/LGraphNode' +import type { NodeProperty } from '@/lib/litegraph/src/LGraphNode' import { LGraphNode } from '@/lib/litegraph/src/litegraph' import { app } from '@/scripts/app' import { useComfyManagerStore } from '@/stores/comfyManagerStore'