more
This commit is contained in:
@@ -32,14 +32,10 @@ const PaymentModal = ({
|
||||
const additionalAccountsAnnualPriceToday =
|
||||
additionalAccountsMonthlyPriceToday * 12;
|
||||
|
||||
console.log(
|
||||
"additionalAccountsAnnualPriceToday",
|
||||
additionalAccountsAnnualPriceToday
|
||||
);
|
||||
|
||||
const extraAccountsPrice = isAnnual
|
||||
? additionalAccountsAnnualPriceToday
|
||||
: additionalAccountsMonthlyPriceToday;
|
||||
|
||||
const showAdditionaLAccountsView =
|
||||
(selectedPlan[0]?.value === "partner" && numberOfAccountsToAdd > 0) ||
|
||||
(selectedPlan[0]?.value === "seniorPartner" && numberOfAccountsToAdd > 0);
|
||||
@@ -81,7 +77,7 @@ const PaymentModal = ({
|
||||
<div className="payment-modal-text-wrapper">
|
||||
<div className="paymodal-summary-right">
|
||||
{numberOfAccountsToAdd} Addiitonal{" "}
|
||||
{numberOfAccountsToAdd > 1 ? `accounts` : `account`}
|
||||
{numberOfAccountsToAdd > 1 ? `accounts:` : `account:`}
|
||||
</div>
|
||||
<div className="paymodal-summary-left">
|
||||
{billingPeriod} - ${extraAccountsPrice}
|
||||
|
||||
Reference in New Issue
Block a user