diff --git a/app/authenticate/page.tsx b/app/authenticate/page.tsx index f134728..de87198 100644 --- a/app/authenticate/page.tsx +++ b/app/authenticate/page.tsx @@ -298,7 +298,7 @@ export default function Page() { setLoading(false); return; } - UserAPI.checkEmail(email) + UserAPI.checkEmail(userInput) .then(r => { setPageType(r ? "login" : "register") if (!r) { @@ -347,9 +347,11 @@ export default function Page() {