* Handles Errors from various Promises..
(error: any)
| 81 | * Handles Errors from various Promises.. |
| 82 | */ |
| 83 | function handleError(error: any) { |
| 84 | // Display Error. |
| 85 | alert('Error: ' + error.message); |
| 86 | console.log(error); |
| 87 | // Re-enable the sign-in button. |
| 88 | signInButton.disabled = false; |
| 89 | } |
| 90 | |
| 91 | /** |
| 92 | * Handles automatically signing-in the app if we clicked on the sign-in link in the email. |
no outgoing calls
no test coverage detected