From 60578314aa2aa663dce3f18587888d476b186a00 Mon Sep 17 00:00:00 2001 From: Jack Steam Date: Tue, 26 Nov 2024 13:30:43 -0700 Subject: [PATCH] Update client/src/components/ToolsTab.tsx Co-authored-by: ashwin-ant --- client/src/components/ToolsTab.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/client/src/components/ToolsTab.tsx b/client/src/components/ToolsTab.tsx index 320366c..255ab67 100644 --- a/client/src/components/ToolsTab.tsx +++ b/client/src/components/ToolsTab.tsx @@ -49,8 +49,11 @@ const ToolsTab = ({ {JSON.stringify(toolResult, null, 2)}

Errors:

- {parsedResult.error.errors.map((error) => ( -
+            {parsedResult.error.errors.map((error, idx) => (
+              
                 {JSON.stringify(error, null, 2)}
               
))}