Align advertised branch limits with backend enforcement

Plan comparison and website pricing advertised branch counts that did not
match PlanLimitsData.ForTier: Pro now shows 3 (was 1) and Business shows
unlimited (was 5), matching what the backend actually enforces.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
soroush.asadi
2026-05-30 05:57:42 +03:30
parent 86bbefb9e3
commit 2850ed8ed7
3 changed files with 6 additions and 6 deletions
@@ -69,8 +69,8 @@ const FEATURE_MATRIX: FeatureRow[] = [
key: "branches",
cells: {
Free: { kind: "limit", value: 1 },
Pro: { kind: "limit", value: 1 },
Business: { kind: "limit", value: 5 },
Pro: { kind: "limit", value: 3 },
Business: { kind: "limit", value: null },
Enterprise: { kind: "limit", value: null },
},
},