(context: FrontendErrorContext)
| 51 | // --------------------------------------------------------------------------- |
| 52 | |
| 53 | const contextLabel = (context: FrontendErrorContext): string => |
| 54 | `${context.surface}/${context.action}`; |
| 55 | |
| 56 | const hasText = (value: string | undefined): value is string => |
| 57 | typeof value === "string" && value.trim().length > 0; |
no outgoing calls
no test coverage detected