We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f23daa commit 911baa9Copy full SHA for 911baa9
frontend/src/components/brochure/pricing-page.tsx
@@ -152,7 +152,9 @@ export function PricingPage({
152
<TableSection title="Availability" totalPackages={levels.length} />
153
<TableBenefit
154
title="Number of slots available"
155
- values={levels.map((p) => `${p.slots}`)}
+ values={levels.map(
156
+ (p) => `${p.slots === 0 ? "Unlimited" : p.slots}`,
157
+ )}
158
/>
159
160
{Object.entries(benefitsByCategory).map(([category, benefits]) => {
0 commit comments