Skip to content

Commit

Permalink
feat: remove useless import
Browse files Browse the repository at this point in the history
  • Loading branch information
ChenChunShenG19 committed Dec 22, 2024
1 parent 79949be commit 8fae80c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/store/clusterManageStore.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { defineStore } from 'pinia';
import { loadHttpClient } from '../datasources';
import { lang } from '../lang';
import { Connection, DatabaseType, useConnectionStore } from './connectionStore.ts';
import { DatabaseType, useConnectionStore } from './connectionStore.ts';
import { CustomError, optionalToNullableInt } from '../common';

export enum IndexHealth {
Expand Down
1 change: 0 additions & 1 deletion src/views/manage/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ const activeTab = ref(lang.t('manage.cluster'));
const connectionStore = useConnectionStore();
const { established } = storeToRefs(connectionStore);
const message = useMessage();
const clusterManageStore = useClusterManageStore();
const { fetchCluster, fetchIndices, fetchAliases, fetchNodes, fetchShards } = clusterManageStore;
Expand Down

0 comments on commit 8fae80c

Please sign in to comment.