| 19 | } |
| 20 | |
| 21 | interface PortfolioPanelProps { |
| 22 | markets: ProcessedMarket[]; |
| 23 | onSelectMarket?: (slug: string) => void; |
| 24 | } |
| 25 | |
| 26 | function timeUntil(iso: string | null | undefined, t?: (key: string) => string): string | null { |
| 27 | if (!iso) return null; |
nothing calls this directly
no outgoing calls
no test coverage detected