Skip to content

Commit 65d94d2

Browse files
authored
Merge pull request #6858 from Namanv0509/decimal-fix
Decimal fix in slider
2 parents ad8bb9e + ceb726d commit 65d94d2

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
@@ -401,7 +401,7 @@ export const PricingAddons = ({ isYearly = false, setIsYearly ,currency,enterpri
401401
sm: "0.9rem",
402402
}
403403
}}>
404-
{formatPrice(isYearly ? option.yearlyPerUser : option.monthlyPerUser)}<br />{targetSubAddon.unitLabelSingular}/{isYearly ? "year" : "month"}
404+
{Number(isYearly ? option.yearlyPerUser : option.monthlyPerUser).toFixed(2)}<br />{targetSubAddon.unitLabelSingular}/{isYearly ? "year" : "month"}
405405
</Box>
406406
</Box>
407407
),

0 commit comments

Comments
 (0)