From 5014162f2f7e7dfc33e3ec4b6b1f1af00c70fa17 Mon Sep 17 00:00:00 2001 From: yoosangwook Date: Wed, 28 May 2025 14:45:52 +0900 Subject: [PATCH] chore: comment out axios login request in Login component --- src/components/Login.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/Login.tsx b/src/components/Login.tsx index 4a77ad6..af2c3fd 100644 --- a/src/components/Login.tsx +++ b/src/components/Login.tsx @@ -83,6 +83,10 @@ export default function Login() { loginId: account.loginId, pwd: account.pwd, }) + // const { data } = await axiosInstance(`${process.env.NEXT_PUBLIC_QSP_API_URL}`).post(`/api/user/login`, { + // loginId: account.loginId, + // pwd: account.pwd, + // }) return data },