···22 Intl.NumberFormat('en-US', {
33 notation: 'compact',
44 maximumFractionDigits: 1,
55+ // `1,953` shouldn't be rounded up to 2k, it should be truncated.
66+ // @ts-expect-error: `roundingMode` doesn't seem to be in the typings yet
77+ // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat/NumberFormat#roundingmode
88+ roundingMode: 'trunc',
59 }).format(num)
610711export function formatCountShortOnly(num: number): string {