()
| 7 | * A sidebar for deployment settings. |
| 8 | */ |
| 9 | export const DeploymentSidebar: FC = () => { |
| 10 | const { permissions } = useAuthenticated(); |
| 11 | const { entitlements, showOrganizations, experiments, buildInfo } = |
| 12 | useDashboard(); |
| 13 | const hasPremiumLicense = |
| 14 | entitlements.features.multiple_organizations.enabled; |
| 15 | |
| 16 | return ( |
| 17 | <DeploymentSidebarView |
| 18 | permissions={permissions} |
| 19 | showOrganizations={showOrganizations} |
| 20 | hasPremiumLicense={hasPremiumLicense} |
| 21 | experiments={experiments} |
| 22 | buildInfo={buildInfo} |
| 23 | /> |
| 24 | ); |
| 25 | }; |
nothing calls this directly
no test coverage detected