more
This commit is contained in:
@@ -26,8 +26,9 @@ const PaymentModal = ({
|
||||
const monthlySubscriptionPriceToday = selectedPlan[0].pricing[0].amount;
|
||||
const annualSubscriptionPriceToday = selectedPlan[0].pricing[1].amount * 12;
|
||||
|
||||
const additionalAccountsMonthlyPriceToday =
|
||||
selectedPlan[0].pricing[2].amount * numberOfAccountsToAdd;
|
||||
const additionalAccountsMonthlyPriceToday = selectedPlan[0].pricing[2].amount
|
||||
? selectedPlan[0].pricing[2].amount * numberOfAccountsToAdd
|
||||
: null;
|
||||
|
||||
const additionalAccountsAnnualPriceToday =
|
||||
additionalAccountsMonthlyPriceToday * 12;
|
||||
|
||||
Reference in New Issue
Block a user