We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee749eb commit ef110f3Copy full SHA for ef110f3
src/composables/useCoreCommands.ts
@@ -1,4 +1,4 @@
1
-import type { ComputedRef } from 'vue'
+import { computed } from 'vue'
2
3
import { useCurrentUser } from '@/composables/auth/useCurrentUser'
4
import { useFirebaseAuthActions } from '@/composables/auth/useFirebaseAuthActions'
@@ -66,9 +66,7 @@ import { ManagerTab } from '@/workbench/extensions/manager/types/comfyManagerTyp
66
67
import { useWorkflowTemplateSelectorDialog } from './useWorkflowTemplateSelectorDialog'
68
69
-const defaultSubscriptionState: Pick<ComputedRef<boolean>, 'value'> = {
70
- value: true
71
-}
+const defaultSubscriptionState = computed(() => true)
72
const noop = () => {}
73
74
const moveSelectedNodesVersionAdded = '1.22.2'
0 commit comments