(tier: string | null)
| 179 | * Get seat limits for a membership tier. |
| 180 | */ |
| 181 | export function getSeatLimits(tier: string | null): SeatLimits { |
| 182 | if (!tier) return DEFAULT_SEAT_LIMITS; |
| 183 | return SEAT_LIMITS[tier] || DEFAULT_SEAT_LIMITS; |
| 184 | } |
| 185 | |
| 186 | /** |
| 187 | * Map Stripe price lookup key to membership tier. |
no outgoing calls
no test coverage detected