Skip to content

Commit

Permalink
feat(web,dashboard): set member limit for business tier to 50 (#7301)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChmaraX authored Dec 16, 2024
1 parent 3fe7e16 commit 8f1070a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .source
4 changes: 2 additions & 2 deletions apps/dashboard/src/components/billing/features.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Check } from 'lucide-react';
import { ApiServiceLevelEnum } from '@novu/shared';
import { Check } from 'lucide-react';
import { cn } from '../../utils/ui';

enum SupportedPlansEnum {
Expand Down Expand Up @@ -159,7 +159,7 @@ const features: Feature[] = [
label: 'Team members',
values: {
[SupportedPlansEnum.FREE]: { value: '3' },
[SupportedPlansEnum.BUSINESS]: { value: '10' },
[SupportedPlansEnum.BUSINESS]: { value: '50' },
[SupportedPlansEnum.ENTERPRISE]: { value: 'Unlimited' },
},
},
Expand Down
4 changes: 2 additions & 2 deletions apps/dashboard/src/components/billing/plans-row.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { Badge } from '@/components/primitives/badge';
import { Card } from '@/components/primitives/card';
import { Check } from 'lucide-react';
import { PlanActionButton } from './plan-action-button';
import { ContactSalesButton } from './contact-sales-button';
import { PlanActionButton } from './plan-action-button';

interface PlansRowProps {
selectedBillingInterval: 'month' | 'year';
Expand Down Expand Up @@ -87,7 +87,7 @@ export function PlansRow({ selectedBillingInterval, currentPlan, trial }: PlansR
</li>
<li className="flex items-center gap-2 text-sm">
<Check className="text-primary h-4 w-4" />
<span>Up to 10 team members</span>
<span>Up to 50 team members</span>
</li>
<li className="flex items-center gap-2 text-sm">
<Check className="text-primary h-4 w-4" />
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/ee/billing/components/Features.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ const features: Feature[] = [
label: 'Team members',
values: {
[SupportedPlansEnum.FREE]: { value: '3' },
[SupportedPlansEnum.BUSINESS]: { value: '10' },
[SupportedPlansEnum.BUSINESS]: { value: '50' },
[SupportedPlansEnum.ENTERPRISE]: { value: 'Unlimited' },
},
},
Expand Down

0 comments on commit 8f1070a

Please sign in to comment.