(error: Error)
| 97 | * Checks if an error is recoverable without a full page reload. |
| 98 | */ |
| 99 | export function isRecoverableError(error: Error): boolean { |
| 100 | const strategy = getRecoveryStrategy(classifyError(error)); |
| 101 | return strategy === 'retry' || strategy === 'dismiss'; |
| 102 | } |
nothing calls this directly
no test coverage detected