Skip to content

Commit

Permalink
feat(dashboard,web): set member limit to unlimited (#7311)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChmaraX authored Dec 16, 2024
1 parent 92b532e commit 87d25bd
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .source
2 changes: 1 addition & 1 deletion apps/dashboard/src/components/billing/features.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ const features: Feature[] = [
label: 'Team members',
values: {
[SupportedPlansEnum.FREE]: { value: '3' },
[SupportedPlansEnum.BUSINESS]: { value: '50' },
[SupportedPlansEnum.BUSINESS]: { value: 'Unlimited' },
[SupportedPlansEnum.ENTERPRISE]: { value: 'Unlimited' },
},
},
Expand Down
2 changes: 1 addition & 1 deletion apps/dashboard/src/components/billing/highlights-row.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const highlights: PlanHighlights = {
],
[ApiServiceLevelEnum.BUSINESS]: [
{ text: 'Up to 250,000 events per month' },
{ text: '50 teammates' },
{ text: 'Unlimited teammates' },
{ text: '90 days Activity Feed retention' },
],
[ApiServiceLevelEnum.ENTERPRISE]: [
Expand Down
2 changes: 1 addition & 1 deletion apps/dashboard/src/components/billing/plans-row.tsx
Original file line number Diff line number Diff line change
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 50 team members</span>
<span>Unlimited 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: '50' },
[SupportedPlansEnum.BUSINESS]: { value: 'Unlimited' },
[SupportedPlansEnum.ENTERPRISE]: { value: 'Unlimited' },
},
},
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/ee/billing/components/HighlightsRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const highlights: PlanHighlights = {
],
[ApiServiceLevelEnum.BUSINESS]: [
{ text: 'Up to 250,000 events per month' },
{ text: '50 teammates' },
{ text: 'Unlimited teammates' },
{ text: '90 days Activity Feed retention' },
],
[ApiServiceLevelEnum.ENTERPRISE]: [
Expand Down

0 comments on commit 87d25bd

Please sign in to comment.