(resetDate: Date | string | null)
| 16 | * @returns Human-readable string like "4d 7h" or "2h 30m" |
| 17 | */ |
| 18 | export const formatResetTimeLong = (resetDate: Date | string | null): string => { |
| 19 | if (!resetDate) return '' |
| 20 | return formatTimeUntil(resetDate, { fallback: 'now' }) |
| 21 | } |
no test coverage detected