diff --git a/services/web/app/src/Features/Subscription/SubscriptionFormatters.js b/services/web/app/src/Features/Subscription/SubscriptionFormatters.js index 72f960f560..39d60f2eb0 100644 --- a/services/web/app/src/Features/Subscription/SubscriptionFormatters.js +++ b/services/web/app/src/Features/Subscription/SubscriptionFormatters.js @@ -19,7 +19,7 @@ module.exports = { if (!currency) { currency = 'USD' } - let string = priceInCents + '' + let string = String(Math.round(priceInCents)) if (string.length === 2) { string = `0${string}` }