diff --git a/ghost/admin/app/controllers/settings/membership.js b/ghost/admin/app/controllers/settings/membership.js index ce1767627f..f10fa1c0d6 100644 --- a/ghost/admin/app/controllers/settings/membership.js +++ b/ghost/admin/app/controllers/settings/membership.js @@ -259,8 +259,8 @@ export default class MembersAccessController extends Controller { @action updatePortalPreview({forceRefresh} = {forceRefresh: false}) { // TODO: can these be worked out from settings in membersUtils? - const monthlyPrice = this.stripeMonthlyAmount * 100; - const yearlyPrice = this.stripeYearlyAmount * 100; + const monthlyPrice = Math.round(this.stripeMonthlyAmount * 100); + const yearlyPrice = Math.round(this.stripeYearlyAmount * 100); let portalPlans = this.settings.get('portalPlans') || []; let isMonthlyChecked = portalPlans.includes('monthly');