Skip to content

Commit ab806c7

Browse files
authored
Merge pull request #6798 from layer5io/pricing-nan
Pricing-nan
2 parents ba74152 + c0cbee6 commit ab806c7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • src/components/Pricing/PricingAddons

src/components/Pricing/PricingAddons/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ export const PricingAddons = ({ isYearly = false, setIsYearly ,currency,enterpri
9090
const monthlyPerUserCost = currentLearnerOption.monthlyPerUser;
9191
const yearlyPerUserCost = currentLearnerOption.yearlyPerUser;
9292
baseTotal = isYearly
93-
? yearlyPerUserCost * currentLearnerOption.learners * 12 / "yearly"
93+
? yearlyPerUserCost * currentLearnerOption.learners
9494
: monthlyPerUserCost * currentLearnerOption.learners;
9595
}
9696
} else {

0 commit comments

Comments
 (0)