sign in page ui implemented

This commit is contained in:
Sanidhya Kumar Verma
2024-08-29 16:48:31 +00:00
committed by GitHub
parent 0f18202280
commit 3e4c13d87c
4 changed files with 50 additions and 5 deletions
+4
View File
@@ -45,6 +45,10 @@ const SignUp = () => {
password: "",
}));
} catch (err: any) {
setForm((prevForm) => ({
...prevForm,
password: "",
}));
Alert.alert("Error", err?.errors[0]?.longMessage);
}
};