diff --git a/ghost/admin/app/controllers/settings/membership.js b/ghost/admin/app/controllers/settings/membership.js index 0da6ada778..806b9d479a 100644 --- a/ghost/admin/app/controllers/settings/membership.js +++ b/ghost/admin/app/controllers/settings/membership.js @@ -413,8 +413,8 @@ export default class MembersAccessController extends Controller { const monthlyPrice = this.getPrice(activePrices, 'monthly'); const yearlyPrice = this.getPrice(activePrices, 'yearly'); - this.stripeMonthlyAmount = (monthlyPrice.amount / 100); - this.stripeYearlyAmount = (yearlyPrice.amount / 100); + this.stripeMonthlyAmount = monthlyPrice ? (monthlyPrice.amount / 100) : 5; + this.stripeYearlyAmount = yearlyPrice ? (yearlyPrice.amount / 100) : 50; } reset() {