diff --git a/frontend/apps/web/app/(mgmt)/[account]/settings/billing/page.tsx b/frontend/apps/web/app/(mgmt)/[account]/settings/billing/page.tsx index afc33cdbf7..6586037e90 100644 --- a/frontend/apps/web/app/(mgmt)/[account]/settings/billing/page.tsx +++ b/frontend/apps/web/app/(mgmt)/[account]/settings/billing/page.tsx @@ -28,8 +28,10 @@ import { ReactElement, useState } from 'react'; import { useForm } from 'react-hook-form'; import { toast } from 'sonner'; +type PlanName = 'Trial' | 'Team' | 'Enterprise'; + interface Plan { - name: string; + name: PlanName; description: string; price: string; buttonText: string; @@ -284,7 +286,7 @@ function Plans({ buttonText={plan.buttonText} />
- {plan.name == 'Personal' && '*No credit card required'} + {plan.name == 'Trial' && '*No credit card required'}