From 430d8f49a994be5373900f08acf99746d25a94ee Mon Sep 17 00:00:00 2001 From: Namanv509 Date: Wed, 24 Sep 2025 12:35:33 +0530 Subject: [PATCH] comparative price between monthly and annual duration per learner Signed-off-by: Namanv509 --- src/components/Pricing/PricingAddons/index.js | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/src/components/Pricing/PricingAddons/index.js b/src/components/Pricing/PricingAddons/index.js index 4549007b2aa26..b49de0cc102da 100644 --- a/src/components/Pricing/PricingAddons/index.js +++ b/src/components/Pricing/PricingAddons/index.js @@ -399,7 +399,19 @@ export const PricingAddons = ({ isYearly = false, setIsYearly, currency, enterpr sm: "0.9rem", } }}> - {formatSliderPrice(isYearly ? option.yearlyPerUser : option.monthlyPerUser, currency)}
{targetSubAddon.unitLabelSingular}/{isYearly ? "year" : "month"} + {formatSliderPrice(isYearly ? option.yearlyPerUser : option.monthlyPerUser, currency)}/{targetSubAddon.unitLabelSingular}/{isYearly ? "year" : "month"} + {isYearly && ( + + {formatSliderPrice(option.yearlyPerUser / 12, currency)}/{targetSubAddon.unitLabelSingular}/month + + )} ),