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 f56cc00 commit ffea73cCopy full SHA for ffea73c
apps/dashboard/src/@/components/blocks/pricing-card.tsx
@@ -60,11 +60,8 @@ export const PricingCard: React.FC<PricingCardProps> = ({
60
const remainingTrialDays =
61
(activeTrialEndsAt ? remainingDays(activeTrialEndsAt) : 0) || 0;
62
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";
+ // trials are disabled for now
+ const has7DayTrial = false;
68
69
return (
70
<div
0 commit comments