(userID: string)
| 121 | * @returns void |
| 122 | */ |
| 123 | const onLoginSuccess = (userID: string) => { |
| 124 | logAnalyticsEvent("login", { method: "email" }); |
| 125 | closeDialog(); |
| 126 | redirectOnLogin(userID); |
| 127 | }; |
| 128 | |
| 129 | /** |
| 130 | * Callback function for when the user fails to log in |
nothing calls this directly
no test coverage detected