We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ba74152 + c0cbee6 commit ab806c7Copy full SHA for ab806c7
1 file changed
src/components/Pricing/PricingAddons/index.js
@@ -90,7 +90,7 @@ export const PricingAddons = ({ isYearly = false, setIsYearly ,currency,enterpri
90
const monthlyPerUserCost = currentLearnerOption.monthlyPerUser;
91
const yearlyPerUserCost = currentLearnerOption.yearlyPerUser;
92
baseTotal = isYearly
93
- ? yearlyPerUserCost * currentLearnerOption.learners * 12 / "yearly"
+ ? yearlyPerUserCost * currentLearnerOption.learners
94
: monthlyPerUserCost * currentLearnerOption.learners;
95
}
96
} else {
0 commit comments