From 990383fab44fb3209a63cfa646391d008fe7c073 Mon Sep 17 00:00:00 2001 From: Kai Vandivier Date: Fri, 15 Dec 2023 15:36:33 +0100 Subject: [PATCH] fix: trailing zeroes --- src/components/FormattedNumber/FormattedNumber.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/FormattedNumber/FormattedNumber.js b/src/components/FormattedNumber/FormattedNumber.js index feea9eb2..3938ae13 100644 --- a/src/components/FormattedNumber/FormattedNumber.js +++ b/src/components/FormattedNumber/FormattedNumber.js @@ -17,7 +17,7 @@ const FormattedNumber = ({ FormattedNumber.defaultProps = { maximumFractionDigits: 2, - minimumFractionDigits: 2, + minimumFractionDigits: 0, } FormattedNumber.propTypes = {