From 204936b2d05093b96ad2f05ab46b3b61fa18826a Mon Sep 17 00:00:00 2001 From: Alex Date: Mon, 5 May 2025 23:34:13 +0100 Subject: [PATCH] fix: sources icon mini fix --- frontend/src/agents/NewAgent.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/agents/NewAgent.tsx b/frontend/src/agents/NewAgent.tsx index 0cccfbe6..0a601699 100644 --- a/frontend/src/agents/NewAgent.tsx +++ b/frontend/src/agents/NewAgent.tsx @@ -360,7 +360,7 @@ export default function NewAgent({ mode }: { mode: 'new' | 'edit' | 'draft' }) { sourceDocs?.map((doc: Doc) => ({ id: doc.id || doc.retriever || doc.name, label: doc.name, - icon: SourceIcon, + icon: , })) || [] } selectedIds={selectedSourceIds}