Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import type { Team } from "@/api/team";
// Note: Growth legacy is considered higher tier in this hierarchy
export const planToTierRecordForGating: Record<Team["billingPlan"], number> = {
free: 0,
starter_legacy: 1,
starter: 2,
starter: 1,
starter_legacy: 2,
growth: 3,
accelerate: 4,
growth_legacy: 5,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,7 @@ export function AccountAbstractionSettingsPage(
</div>

<GatedSwitch
requiredPlan="accelerate"
requiredPlan="starter"
currentPlan={props.validTeamPlan}
teamSlug={props.teamSlug}
switchProps={{
Expand Down
Loading