* Alerts the error message in the toast and logs the error in the console. * @param {!Error} error The error to display.
(error: Error)
| 593 | * @param {!Error} error The error to display. |
| 594 | */ |
| 595 | function displayError(error: Error) { |
| 596 | alertMessage(error.message); |
| 597 | console.error(error); |
| 598 | } |
| 599 | |
| 600 | /** |
| 601 | * Displays the error message in the mfa dialog and logs the error in the console. |
no test coverage detected