From 23fd45bda25cf34142e80152a027734fbb24f64a Mon Sep 17 00:00:00 2001 From: Mac mini <> Date: Tue, 31 Mar 2026 10:44:19 +0700 Subject: [PATCH] update --- .gitignore | 1 - src/components/auth/SignInForm.tsx | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 02d92a7..307b5d6 100644 --- a/.gitignore +++ b/.gitignore @@ -28,7 +28,6 @@ yarn-error.log* # local env files .env*.local -.env # vercel .vercel diff --git a/src/components/auth/SignInForm.tsx b/src/components/auth/SignInForm.tsx index 968d27d..18f72d4 100644 --- a/src/components/auth/SignInForm.tsx +++ b/src/components/auth/SignInForm.tsx @@ -58,9 +58,10 @@ const [showPassword, setShowPassword] = useState(false); try { setLoading(true); + const res = await apiSignIn(formData); console.log("API Sign In Response:", res); - + const data = await api.get(API.User.CURRENT); console.log("Current User:", data);