From cd9d3ef46f5b649e045f2f3fc9049d6ff94ab84f Mon Sep 17 00:00:00 2001 From: Jake Howell Date: Tue, 2 Dec 2025 07:07:18 +1100 Subject: [PATCH] fix: ensure we check if the user can actually see `ai bridge` (#20964) --- 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 fc7825b3df..c84aae50fa 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; }