From feca4c25d8e1faef311e8377d8d1537df5ea6a85 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 30 Apr 2026 12:16:59 -0400 Subject: [PATCH] fix(site): remove Request Logs from admin menu, redirect /aibridge to sessions (#24840) (#24843) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cherry-pick of https://github.com/coder/coder/pull/24840 Original PR: #24840 — fix(site): remove Request Logs from admin menu, redirect /aibridge to sessions Merge commit: b975262a975375f58647acc2bcc085e473f96848 Requested by: @dannykopping Co-authored-by: Danny Kopping --- .../modules/dashboard/Navbar/DeploymentDropdown.tsx | 11 +++-------- site/src/router.tsx | 5 ++++- 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/site/src/modules/dashboard/Navbar/DeploymentDropdown.tsx b/site/src/modules/dashboard/Navbar/DeploymentDropdown.tsx index e31463851f..fc9ab9baaa 100644 --- a/site/src/modules/dashboard/Navbar/DeploymentDropdown.tsx +++ b/site/src/modules/dashboard/Navbar/DeploymentDropdown.tsx @@ -92,14 +92,9 @@ const DeploymentDropdownContent: FC = ({ )} {canViewAIBridge && ( - <> - - AI Bridge Logs - - - AI Bridge Sessions - - + + AI Bridge Sessions + )} {canViewHealth && ( diff --git a/site/src/router.tsx b/site/src/router.tsx index a643d3bb5e..d6dcd4e95a 100644 --- a/site/src/router.tsx +++ b/site/src/router.tsx @@ -662,7 +662,10 @@ export const router = createBrowserRouter( }> - } /> + } + /> } />