Skip to content

Commit

Permalink
fix(editor): Remove unused store
Browse files Browse the repository at this point in the history
  • Loading branch information
cstuncsik committed May 9, 2024
1 parent 888b741 commit 880d300
Showing 1 changed file with 1 addition and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ import { createEventBus } from 'n8n-design-system/utils';
import { useCredentialsStore } from '@/stores/credentials.store';
import { useWorkflowHelpers } from '@/composables/useWorkflowHelpers';
import { useRouter } from 'vue-router';
import { useProjectsStore } from '@/features/projects/projects.store';
export default defineComponent({
name: 'DuplicateWorkflow',
Expand Down Expand Up @@ -96,13 +95,7 @@ export default defineComponent({
this.focusOnNameInput();
},
computed: {
...mapStores(
useCredentialsStore,
useUsersStore,
useSettingsStore,
useWorkflowsStore,
useProjectsStore,
),
...mapStores(useCredentialsStore, useUsersStore, useSettingsStore, useWorkflowsStore),
},
watch: {
isActive(active) {
Expand Down

0 comments on commit 880d300

Please sign in to comment.