diff --git a/core/frontend/helpers/price.js b/core/frontend/helpers/price.js index 628234912e..e3055cf0fc 100644 --- a/core/frontend/helpers/price.js +++ b/core/frontend/helpers/price.js @@ -23,7 +23,7 @@ function formatter({amount, currency, numberFormat = 'short', currencyFormat = ' if (numberFormat === 'short') { formatterOptions.minimumFractionDigits = 0; } - if (amount) { + if (_.isNumber(amount)) { return new Intl.NumberFormat(locale, formatterOptions).format(amount); } else { const val = new Intl.NumberFormat('en', {