From 156cfb0488bfcad84a159c80c138f001a52fb493 Mon Sep 17 00:00:00 2001 From: dyhj625 Date: Tue, 18 Mar 2025 14:24:21 +0900 Subject: [PATCH] 1 --- src/router/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;