This commit is contained in:
Loewy 2024-02-08 13:31:01 -08:00
parent 3b1abc9ae8
commit e1abd8e85c

View File

@ -42,9 +42,9 @@ export const createOrSignInUser = async (
await auth().signInWithEmailAndPassword(email, password);
}
} catch (err) {
console.log(err)
console.log(err);
// TODO: #107 -- Correct error handling
Alert.alert(err.message)
Alert.alert(err.message);
}
};