Skip to content

Commit e9df7f8

Browse files
committed
Update PricingAddons component to improve price display format and enhance clarity of unit labels
Signed-off-by: Lee Calcote <lee.calcote@layer5.io>
1 parent ea4cc9c commit e9df7f8

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
@@ -415,7 +415,7 @@ export const PricingAddons = ({ isYearly = false, setIsYearly }) => {
415415

416416
<Box>{option.learners === "2500+" ? "2,500+" : option.learners}</Box>
417417
<Box sx={{ color: "primary.main", mb: 1.5, fontSize: ".9rem" }}>
418-
{option.currency}{isYearly ? option.yearlyPerUser : option.monthlyPerUser}/{targetSubAddon.unitLabelSingular}/{isYearly ? "year" : "month"}
418+
{option.currency}{isYearly ? option.yearlyPerUser : option.monthlyPerUser}<br />{targetSubAddon.unitLabelSingular}/{isYearly ? "year" : "month"}
419419
</Box>
420420
</Box>
421421
),

0 commit comments

Comments
 (0)