Fix up typescript config (#9910)

This commit is contained in:
Samuel Newman
2026-02-20 18:07:17 +00:00
committed by GitHub
parent 35f9ed82b9
commit f3cc850b62
7 changed files with 119 additions and 53 deletions
-1
View File
@@ -4,7 +4,6 @@ export const formatCount = (i18n: I18n, num: number) => {
return i18n.number(num, {
notation: 'compact',
maximumFractionDigits: 1,
// @ts-expect-error - roundingMode not in the types
roundingMode: 'trunc',
})
}