Skip to content

Commit ffea73c

Browse files
authored
[Dashboard] Disable 7-day trial for growth plan (#7392)
1 parent f56cc00 commit ffea73c

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

apps/dashboard/src/@/components/blocks/pricing-card.tsx

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,8 @@ export const PricingCard: React.FC<PricingCardProps> = ({
6060
const remainingTrialDays =
6161
(activeTrialEndsAt ? remainingDays(activeTrialEndsAt) : 0) || 0;
6262

63-
// 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
64-
const has7DayTrial =
65-
remainingTrialDays === 0 &&
66-
billingStatus === "noPayment" &&
67-
billingPlan === "growth";
63+
// trials are disabled for now
64+
const has7DayTrial = false;
6865

6966
return (
7067
<div

0 commit comments

Comments
 (0)