( entitlements: Entitlements, )
| 24 | }; |
| 25 | |
| 26 | export const selectFeatureVisibility = ( |
| 27 | entitlements: Entitlements, |
| 28 | ): Record<FeatureName, boolean> => { |
| 29 | return getFeatureVisibility(entitlements.has_license, entitlements.features); |
| 30 | }; |
| 31 | |
| 32 | /** |
| 33 | * Keep the AI seats column visible while in grace period so admins can |
no test coverage detected