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}
|
||||
|
||||
@@ -81,6 +81,7 @@
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: flex-end;
|
||||
margin-bottom: 12px;
|
||||
margin-right: 20px;
|
||||
padding-right: 20px;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user