Skip to content

Commit

Permalink
fix: cluster limit for free tier (#515)
Browse files Browse the repository at this point in the history
  • Loading branch information
CristhianF7 authored Sep 5, 2024
1 parent 6e65202 commit a29c524
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hooks/usePaywall.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { useAppSelector } from '@/redux/store';
import { SaasFeatures, SaasPlans } from '@/types/subscription';

export const CLUSTERS_LIMIT_FALLBACK: { [key: string]: number } = {
[SaasPlans.Community]: 4,
[SaasPlans.Community]: 3,
[SaasPlans.Pro]: 10,
[SaasPlans.Enterprise]: Infinity,
};
Expand Down

0 comments on commit a29c524

Please sign in to comment.