@@ -2,10 +2,11 @@ import {
22 BellAlertIcon ,
33 ChartBarIcon ,
44 CreditCardIcon ,
5- LockClosedIcon ,
6- ShieldCheckIcon ,
75} from "@heroicons/react/20/solid" ;
86import { ArrowLeftIcon } from "@heroicons/react/24/solid" ;
7+ import { PadlockIcon } from "~/assets/icons/PadlockIcon" ;
8+ import { RolesIcon } from "~/assets/icons/RolesIcon" ;
9+ import { ShieldLockIcon } from "~/assets/icons/ShieldLockIcon" ;
910import { SlackIcon } from "~/assets/icons/SlackIcon" ;
1011import { SlidersIcon } from "~/assets/icons/SlidersIcon" ;
1112import { UserGroupIcon } from "~/assets/icons/UserGroupIcon" ;
@@ -114,16 +115,6 @@ export function OrganizationSettingsSideMenu({
114115 />
115116 </ >
116117 ) }
117- { featureFlags . hasPrivateConnections && (
118- < SideMenuItem
119- name = "Private Connections"
120- icon = { LockClosedIcon }
121- activeIconColor = "text-text-bright"
122- inactiveIconColor = "text-text-dimmed"
123- to = { v3PrivateConnectionsPath ( organization ) }
124- data-action = "private-connections"
125- />
126- ) }
127118 < SideMenuItem
128119 name = "Team"
129120 icon = { UserGroupIcon }
@@ -132,16 +123,26 @@ export function OrganizationSettingsSideMenu({
132123 to = { organizationTeamPath ( organization ) }
133124 data-action = "team"
134125 />
135- { isUsingPlugin && (
136- < SideMenuItem
137- name = "Roles"
138- icon = { ShieldCheckIcon }
139- activeIconColor = "text-text-bright"
140- inactiveIconColor = "text-text-dimmed"
141- to = { organizationRolesPath ( organization ) }
142- data-action = "roles"
143- />
144- ) }
126+ { /* {isUsingPlugin && ( */ }
127+ { /* {featureFlags.hasPrivateConnections && ( */ }
128+ < SideMenuItem
129+ name = "Private Connections"
130+ icon = { PadlockIcon }
131+ activeIconColor = "text-text-bright"
132+ inactiveIconColor = "text-text-dimmed"
133+ to = { v3PrivateConnectionsPath ( organization ) }
134+ data-action = "private-connections"
135+ />
136+ { /* )} */ }
137+ < SideMenuItem
138+ name = "Roles"
139+ icon = { RolesIcon }
140+ activeIconColor = "text-text-bright"
141+ inactiveIconColor = "text-text-dimmed"
142+ to = { organizationRolesPath ( organization ) }
143+ data-action = "roles"
144+ />
145+ { /* )} */ }
145146 < SideMenuItem
146147 name = "Settings"
147148 icon = { SlidersIcon }
0 commit comments