refactor(front) : move useApi and shared stores (auth, ui) to shared/

This commit is contained in:
Matthieu
2026-06-19 15:06:50 +02:00
parent 51de96c797
commit 1aa43a5356
4 changed files with 2 additions and 2 deletions
@@ -8,7 +8,7 @@ import { useMailService } from '~/services/mail'
import { useProjectService } from '~/services/projects'
import { useTaskGroupService } from '~/services/task-groups'
import { useUserService } from '~/services/users'
import { useAuthStore } from '~/stores/auth'
import { useAuthStore } from '~/shared/stores/auth'
const props = defineProps<{
modelValue: boolean
@@ -1,6 +1,6 @@
import type { FetchOptions } from 'ofetch'
import { $fetch, FetchError } from 'ofetch'
import { useAuthStore } from '~/stores/auth'
import { useAuthStore } from '~/shared/stores/auth'
export type AnyObject = Record<string, unknown>