diff --git a/app/utils.js b/app/utils.js index 79e799c..080834e 100644 --- a/app/utils.js +++ b/app/utils.js @@ -373,7 +373,7 @@ function formatLargeNumber(n, decimalPlaces) { } } - return [n, {}]; + return [new Decimal(n).toDecimalPlaces(decimalPlaces), {}]; }