(error)
| 3589 | }); |
| 3590 | |
| 3591 | function getErrorMessage(error) { |
| 3592 | if (typeof loggingStatus !== 'undefined' && loggingStatus?.getErrorMessage) { |
| 3593 | return loggingStatus.getErrorMessage(error); |
| 3594 | } |
| 3595 | return String(typeof error === 'string' ? error : error?.message || ''); |
| 3596 | } |
| 3597 | |
| 3598 | function isVerificationMailPollingError(error) { |
| 3599 | if (typeof loggingStatus !== 'undefined' && loggingStatus?.isVerificationMailPollingError) { |
no outgoing calls
no test coverage detected