feat(sidebar): add traffic-inspector entry to HIDEABLE + TOOLS_GROUP (F8)

This commit is contained in:
diegosouzapw
2026-05-28 07:25:23 -03:00
parent 442457af75
commit d73273ca20

View File

@@ -16,6 +16,8 @@ export const HIDEABLE_SIDEBAR_ITEM_IDS = [
"cli-tools",
"agents",
"cloud-agents",
"agent-bridge",
"traffic-inspector",
// OmniProxy > Integrations
"api-endpoints",
"webhooks",
@@ -249,6 +251,20 @@ const TOOLS_GROUP: SidebarItemGroup = {
subtitleKey: "cloudAgentsSubtitle",
icon: "cloud",
},
{
id: "agent-bridge",
href: "/dashboard/tools/agent-bridge",
i18nKey: "agentBridge",
subtitleKey: "agentBridgeSubtitle",
icon: "link",
},
{
id: "traffic-inspector",
href: "/dashboard/tools/traffic-inspector",
i18nKey: "trafficInspector",
subtitleKey: "trafficInspectorSubtitle",
icon: "network_check",
},
],
};