diff --git a/apps/mobile/app/components/auth/use-login.ts b/apps/mobile/app/components/auth/use-login.ts index d873eb2db..1466d36de 100644 --- a/apps/mobile/app/components/auth/use-login.ts +++ b/apps/mobile/app/components/auth/use-login.ts @@ -58,7 +58,7 @@ export const useLogin = ( setLoading(true); switch (step) { case LoginSteps.emailAuth: { - if (formRef.current.validateField("email")) { + if (!formRef.current.validate()) { setLoading(false); return; }