fix: Vue auth.service → auth.api import 경로 누락 수정

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
이 Commit은 다음에 포함되어 있습니다:
2026-03-30 22:46:22 +09:00
부모 5415a3cfca
커밋 4ced065d84
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제

파일 보기

@@ -1,7 +1,7 @@
import { defineStore } from 'pinia'; import { defineStore } from 'pinia';
import { ref } from 'vue'; import { ref } from 'vue';
import { authService as tokenService } from '@/core/auth/auth.service'; import { authService as tokenService } from '@/core/auth/auth.service';
import { authApi } from './auth.service'; import { authApi } from './auth.api';
import type { AuthUser } from '@/core/auth/auth.types'; import type { AuthUser } from '@/core/auth/auth.types';
export const useAuthStore = defineStore('auth', () => { export const useAuthStore = defineStore('auth', () => {

파일 보기

@@ -5,7 +5,7 @@ import Password from 'primevue/password';
import Button from 'primevue/button'; import Button from 'primevue/button';
import Card from 'primevue/card'; import Card from 'primevue/card';
import Message from 'primevue/message'; import Message from 'primevue/message';
import { authApi } from '../auth.service'; import { authApi } from '../auth.api';
const router = useRouter(); const router = useRouter();