(value?: boolean)
| 49 | } |
| 50 | |
| 51 | export function weightsText(value?: boolean) { |
| 52 | if (value === undefined) return "-"; |
| 53 | return value ? "Open" : "Closed"; |
| 54 | } |
| 55 | |
| 56 | export function renderModalityIcon(modality: string) { |
| 57 | const label = |
no outgoing calls
no test coverage detected