(e)
| 82 | }; |
| 83 | |
| 84 | const onGoogleSignIn = (e) => { |
| 85 | e.preventDefault(); |
| 86 | if (!isLoggedIn) { |
| 87 | setLoggedIn(true); |
| 88 | doSignInWithGoogle().catch((err) => { |
| 89 | console.log(err); |
| 90 | setLoggedIn(false); |
| 91 | }); |
| 92 | } |
| 93 | }; |
| 94 | |
| 95 | const signUpWithEmailPassword = async (email, name, password) => { |
| 96 | console.log(email) |
nothing calls this directly
no test coverage detected