(subscription: any)
| 113 | } |
| 114 | |
| 115 | export function checkTeamPlan(subscription: any): boolean { |
| 116 | return isTeam(subscription?.plan) && hasPaidSubscriptionStatus(subscription?.status) |
| 117 | } |
| 118 | |
| 119 | /** |
| 120 | * True when the subscription's `referenceId` is an org (i.e. not the |
no test coverage detected