From 4ced065d849e6084a35202b67b7a0726d8089b79 Mon Sep 17 00:00:00 2001 From: accura0117 Date: Mon, 30 Mar 2026 22:46:22 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20Vue=20auth.service=20=E2=86=92=20auth.ap?= =?UTF-8?q?i=20import=20=EA=B2=BD=EB=A1=9C=20=EB=88=84=EB=9D=BD=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 (1M context) --- wtm-frontend-vue/src/modules/auth/auth.store.ts | 2 +- wtm-frontend-vue/src/modules/auth/views/ChangePasswordView.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wtm-frontend-vue/src/modules/auth/auth.store.ts b/wtm-frontend-vue/src/modules/auth/auth.store.ts index 300e8ea..2f5d4c2 100644 --- a/wtm-frontend-vue/src/modules/auth/auth.store.ts +++ b/wtm-frontend-vue/src/modules/auth/auth.store.ts @@ -1,7 +1,7 @@ import { defineStore } from 'pinia'; import { ref } from 'vue'; 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'; export const useAuthStore = defineStore('auth', () => { diff --git a/wtm-frontend-vue/src/modules/auth/views/ChangePasswordView.vue b/wtm-frontend-vue/src/modules/auth/views/ChangePasswordView.vue index e5ac1f9..da3dc2d 100644 --- a/wtm-frontend-vue/src/modules/auth/views/ChangePasswordView.vue +++ b/wtm-frontend-vue/src/modules/auth/views/ChangePasswordView.vue @@ -5,7 +5,7 @@ import Password from 'primevue/password'; import Button from 'primevue/button'; import Card from 'primevue/card'; import Message from 'primevue/message'; -import { authApi } from '../auth.service'; +import { authApi } from '../auth.api'; const router = useRouter();