diff --git a/components/auth/components-auth-login-form.tsx b/components/auth/components-auth-login-form.tsx index ac1f086..77cf895 100644 --- a/components/auth/components-auth-login-form.tsx +++ b/components/auth/components-auth-login-form.tsx @@ -14,8 +14,8 @@ const ComponentsAuthLoginForm = () => { const submitForm = async (e: React.FormEvent) => { e.preventDefault() - setLoading(true) + setLoading(true) try { const res = await axios.post(`${process.env.NEXT_PUBLIC_API_BASE_URL}/api/login`, { email, @@ -32,7 +32,7 @@ const ComponentsAuthLoginForm = () => { } finally { setLoading(false) } - }; + } return (