From 98b0ccf032f1794e4ad37ba8ff3b62fa1cfec7f7 Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Fri, 10 May 2024 12:11:57 +0800 Subject: [PATCH] Default to floor rounding mode --- src/utils/shorten-number.jsx | 1 + 1 file changed, 1 insertion(+) 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;