diff --git a/apps/dashboard/src/@/components/blocks/pricing-card.tsx b/apps/dashboard/src/@/components/blocks/pricing-card.tsx index 62d5ab4d0c1..d947fe59602 100644 --- a/apps/dashboard/src/@/components/blocks/pricing-card.tsx +++ b/apps/dashboard/src/@/components/blocks/pricing-card.tsx @@ -60,11 +60,8 @@ export const PricingCard: React.FC = ({ const remainingTrialDays = (activeTrialEndsAt ? remainingDays(activeTrialEndsAt) : 0) || 0; - // if the team has just signed up and has not subscribed yet, and the billing plan is growth, then they get a 7 day trial - const has7DayTrial = - remainingTrialDays === 0 && - billingStatus === "noPayment" && - billingPlan === "growth"; + // trials are disabled for now + const has7DayTrial = false; return (