(count: number | null)
| 11 | |
| 12 | // `largeNumberFormat` takes a number; guard the nullable counter value here. |
| 13 | const formatCount = (count: number | null): string | null => |
| 14 | count == null ? null : largeNumberFormat(count); |
| 15 | |
| 16 | export default function InteractionCounter({ |
| 17 | className, |
no test coverage detected