Skip to content

Commit 533157d

Browse files
committed
addon bug fix
Signed-off-by: Namanv509 <namanverma00260@gmail.com>
1 parent f2fd320 commit 533157d

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
@@ -549,7 +549,7 @@ export const PricingAddons = ({ isYearly = false, setIsYearly ,currency,enterpri
549549
/>
550550
</Box>
551551
<Typography variant="body1" fontWeight="500" sx={typographyStyles.pricingItemRight}>
552-
{formatPrice((isYearly ? enterprisePlan.yearlyprice : enterprisePlan.monthlyprice) * (enterpriseUsers > 0 ? enterpriseUsers : 1))}/{isYearly ? "monthly" : "yearly"}
552+
{formatPrice((isYearly ? enterprisePlan.yearlyprice : enterprisePlan.monthlyprice) * (enterpriseUsers > 0 ? enterpriseUsers : 1))}/{isYearly ? "yearly" : "monthly"}
553553
</Typography>
554554
</Box>
555555

0 commit comments

Comments
 (0)