fix: ensure we check if the user can actually see ai bridge (#20964)

This commit is contained in:
Jake Howell
2025-12-02 07:07:18 +11:00
committed by GitHub
parent c0a2522bd6
commit cd9d3ef46f
@@ -34,7 +34,8 @@ export const DeploymentDropdown: FC<DeploymentDropdownProps> = ({
!canViewConnectionLog &&
!canViewOrganizations &&
!canViewDeployment &&
!canViewHealth
!canViewHealth &&
!canViewAIBridge
) {
return null;
}