Skip to content

Commit 5ab975c

Browse files
committed
Update featured label logic in PlanCard component to highlight "Enterprise" tier as most popular
Signed-off-by: Lee Calcote <lee.calcote@layer5.io>
1 parent 092be6e commit 5ab975c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/PlanCard/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const PlanCard = ({ planData , isYearly }) => {
2929

3030
{x.tier === "Personal" ? <div className="pricing-label">Free Forever</div> : null}
3131

32-
{x.tier === "Team Designer" ? <div className="featured-label">Most Popular</div> : null}
32+
{x.tier === "Enterprise" ? <div className="featured-label">Most Popular</div> : null}
3333

3434
{/* {x.pricing_coming_soon && (
3535
<div className="pricing_coming_soon">

0 commit comments

Comments
 (0)