diff --git a/src/stores/workflowStore.ts b/src/stores/workflowStore.ts index b645a502f0..4431c513cc 100644 --- a/src/stores/workflowStore.ts +++ b/src/stores/workflowStore.ts @@ -1,4 +1,3 @@ -// @ts-strict-ignore import { defineStore } from 'pinia' import { computed, ref } from 'vue' import { ComfyWorkflow } from '@/scripts/workflows' @@ -33,7 +32,7 @@ export const useWorkflowStore = defineStore('workflow', () => { // Bookmarked workflows tree is flat. const bookmarkedWorkflowsTree = computed(() => buildTree(bookmarkedWorkflows.value, (workflow: ComfyWorkflow) => [ - workflow.path + workflow.path ?? 'temporary_workflow' ]) ) // Open workflows tree is flat.