()
| 179 | * @returns void |
| 180 | */ |
| 181 | const onSignupSuccess = () => { |
| 182 | logAnalyticsEvent("signup", { method: "email" }); |
| 183 | setAuthDialogState(AuthDialogState.LOGIN); |
| 184 | setVerifyEmailMessage( |
| 185 | "A verification email has been sent to your email address. Please verify your email address to continue.", |
| 186 | ); |
| 187 | }; |
| 188 | |
| 189 | /** |
| 190 | * Callback function for when the user fails to sign up |
nothing calls this directly
no test coverage detected