diff --git a/src/utils/shorten-number.jsx b/src/utils/shorten-number.jsx index 0960ec05..80aef77b 100644 --- a/src/utils/shorten-number.jsx +++ b/src/utils/shorten-number.jsx @@ -1,5 +1,6 @@ const { locale } = Intl.NumberFormat().resolvedOptions(); const shortenNumber = Intl.NumberFormat(locale, { notation: 'compact', + roundingMode: 'floor', }).format; export default shortenNumber;