diff --git a/src/stores/index.ts b/src/stores/index.ts index 3dd7eaab..dc7459b1 100644 --- a/src/stores/index.ts +++ b/src/stores/index.ts @@ -26,6 +26,10 @@ import type { import type { LocalizedPresetCategory } from '@/core/category.ts'; import type { ForgetPasswordRequest } from '@/models/forget_password.ts'; +import { + isObject, + isString +} from '@/lib/common.ts'; import { hasUserAppLockState, getUserAppLockState, @@ -36,7 +40,6 @@ import { } from '@/lib/userstate.ts'; import services, { type ApiResponsePromise } from '@/lib/services.ts'; import logger from '@/lib/logger.ts'; -import { isObject, isString } from '@/lib/common.ts'; export const useRootStore = defineStore('root', () => { const settingsStore = useSettingsStore();