diff --git a/apps/cloud/src/routes/app/billing_.plans.tsx b/apps/cloud/src/routes/app/billing_.plans.tsx index 2c4763767..fb432fad6 100644 --- a/apps/cloud/src/routes/app/billing_.plans.tsx +++ b/apps/cloud/src/routes/app/billing_.plans.tsx @@ -66,12 +66,6 @@ const ACTION_LABELS: Record = { const PLAN_ORDER = ["free", "team", "enterprise"]; -// "14-day free trial", "1-month free trial", etc. — reads the trial config -// synced from the repo-root autumn.config.ts so copy tracks the plan. The unit -// stays singular because it reads as a compound adjective ("14-day", "2-month"). -const trialLabel = (freeTrial: NonNullable): string => - `${freeTrial.durationLength}-${freeTrial.durationType} free trial`; - function PlansPage() { const { attach, openCustomerPortal, isLoading: customerLoading } = useCustomer(); const { data: plans, isLoading: plansLoading, isFetching } = useListPlans(); @@ -186,14 +180,6 @@ function PlansPage() { )} - {trialOffered && freeTrial && ( -

- {trialLabel(freeTrial)} - {plan.price?.amount != null && - `, then $${plan.price.amount} / ${plan.price.interval ?? "month"}`} -

- )} -
{(isCurrent && !isCanceling) || isScheduled ? (