You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was trying to send email through my react native app and every time this error was poping up. I copied the code from the official doc.
Below is the code I am using :
const Verify = async () => {
if (!form.username || !form.email || !form.password) {
Alert.alert('Error', 'Please enter all the fields')
return
}
setIsSubmitting(true);
try {