diff --git a/src/router/index.js b/src/router/index.js index 4461e85..9ad72f2 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -111,7 +111,7 @@ const router = createRouter({ router.beforeEach(async (to, from, next) => { const authStore = useAuthStore(); await authStore.checkAuthStatus(); // 로그인 상태 확인 - const allowedUserId = 26; // 특정 ID (변경필요!!) + const allowedUserId = 1; // 특정 ID (변경필요!!) const userStore = useUserInfoStore(); const userId = userStore.user?.id ?? null;