From 8f453aba90fd4eb9015bfffa749981c52876633f Mon Sep 17 00:00:00 2001 From: Jake Howell Date: Wed, 26 Nov 2025 04:26:26 +0000 Subject: [PATCH] fix: ensure we check if the user can see `ai bridge` --- site/src/modules/dashboard/Navbar/DeploymentDropdown.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/site/src/modules/dashboard/Navbar/DeploymentDropdown.tsx b/site/src/modules/dashboard/Navbar/DeploymentDropdown.tsx index fc7825b3dfc7f..c84aae50fa1aa 100644 --- a/site/src/modules/dashboard/Navbar/DeploymentDropdown.tsx +++ b/site/src/modules/dashboard/Navbar/DeploymentDropdown.tsx @@ -34,7 +34,8 @@ export const DeploymentDropdown: FC = ({ !canViewConnectionLog && !canViewOrganizations && !canViewDeployment && - !canViewHealth + !canViewHealth && + !canViewAIBridge ) { return null; }