diff --git a/packages/billing/gateway/src/components/pricing-table.tsx b/packages/billing/gateway/src/components/pricing-table.tsx index 3ca196b65..85adcc331 100644 --- a/packages/billing/gateway/src/components/pricing-table.tsx +++ b/packages/billing/gateway/src/components/pricing-table.tsx @@ -132,6 +132,7 @@ function PricingItem( name?: string; href?: string; label?: string; + custom?: boolean; }; CheckoutButton?: React.ComponentType<{ @@ -153,6 +154,7 @@ function PricingItem( ) { const highlighted = props.product.highlighted ?? false; const lineItem = props.primaryLineItem!; + const isCustom = props.plan.custom ?? false; // we exclude flat line items from the details since // it doesn't need further explanation @@ -217,12 +219,14 @@ function PricingItem(