(plan: string | null | undefined)
| 26 | } |
| 27 | |
| 28 | export function isMax(plan: string | null | undefined): boolean { |
| 29 | return isPro(plan) && getPlanTierCredits(plan) >= 25000 |
| 30 | } |
| 31 | |
| 32 | export function isTeam(plan: string | null | undefined): boolean { |
| 33 | if (!plan) return false |
no test coverage detected