diff --git a/ui/desktop/src/components/ToolCallWithResponse.tsx b/ui/desktop/src/components/ToolCallWithResponse.tsx index 887c0c5f..ce1926dc 100644 --- a/ui/desktop/src/components/ToolCallWithResponse.tsx +++ b/ui/desktop/src/components/ToolCallWithResponse.tsx @@ -84,9 +84,6 @@ function ToolResultView({ result }: ToolResultViewProps) { // Find results where either audience is not set, or it's set to a list that includes user const filteredResults = result.filter((item) => { - if (!item.annotations) { - return false; - } // Check audience (which may not be in the type) const audience = item.annotations?.audience;