Skip to content

Commit 379c9c9

Browse files
committed
Decimal fix in slider
Signed-off-by: Namanv509 <namanverma00260@gmail.com>
1 parent f2fd320 commit 379c9c9

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)