Skip to content

Commit 4dbf586

Browse files
authored
Merge pull request #6851 from Namanv0509/addon-fix
addon bug fix
2 parents f2fd320 + 533157d commit 4dbf586

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)