We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a9a084 commit c996407Copy full SHA for c996407
1 file changed
src/lib/firebase/auth.ts
@@ -29,9 +29,9 @@ export function useAuth() {
29
}
30
31
export const signIn = async (email: string, pass: string) => {
32
- if (!isAllowedEmail(email)) {
33
- throw new Error("ACCESS_DENIED");
34
- }
+ // if (!isAllowedEmail(email)) {
+ // throw new Error("ACCESS_DENIED");
+ // }
35
const userCredential = await signInWithEmailAndPassword(auth, email, pass);
36
37
if (!userCredential.user.emailVerified) {
0 commit comments