We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbac5b7 commit 6057831Copy full SHA for 6057831
client/src/components/ToolsTab.tsx
@@ -49,8 +49,11 @@ const ToolsTab = ({
49
{JSON.stringify(toolResult, null, 2)}
50
</pre>
51
<h4 className="font-semibold mb-2">Errors:</h4>
52
- {parsedResult.error.errors.map((error) => (
53
- <pre className="bg-gray-50 dark:bg-gray-800 dark:text-gray-100 p-4 rounded text-sm overflow-auto max-h-64">
+ {parsedResult.error.errors.map((error, idx) => (
+ <pre
54
+ key={idx}
55
+ className="bg-gray-50 dark:bg-gray-800 dark:text-gray-100 p-4 rounded text-sm overflow-auto max-h-64"
56
+ >
57
{JSON.stringify(error, null, 2)}
58
59
))}
0 commit comments