chore: comment out axios login request in Login component

This commit is contained in:
yoosangwook 2025-05-28 14:45:52 +09:00
parent 82cdb2a755
commit 5014162f2f

View File

@ -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
},