()
| 8 | * Sidebar for the OrganizationSettingsLayout |
| 9 | */ |
| 10 | export const OrganizationSidebar: FC = () => { |
| 11 | const { permissions } = useAuthenticated(); |
| 12 | const { organizations, organization, organizationPermissions } = |
| 13 | useOrganizationSettings(); |
| 14 | |
| 15 | return ( |
| 16 | <BaseSidebar> |
| 17 | <OrganizationSidebarView |
| 18 | activeOrganization={organization} |
| 19 | orgPermissions={organizationPermissions} |
| 20 | organizations={organizations} |
| 21 | permissions={permissions} |
| 22 | /> |
| 23 | </BaseSidebar> |
| 24 | ); |
| 25 | }; |
nothing calls this directly
no test coverage detected