Skip to content

Commit ce68085

Browse files
committed
Add dark mode support for the legacy Tool Result display
1 parent 0346995 commit ce68085

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/src/components/ToolsTab.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ const ToolsTab = ({
100100
return (
101101
<>
102102
<h4 className="font-semibold mb-2">Tool Result (Legacy):</h4>
103-
<pre className="bg-gray-50 p-4 rounded text-sm overflow-auto max-h-64">
103+
<pre className="bg-gray-50 dark:bg-gray-800 dark:text-gray-100 p-4 rounded text-sm overflow-auto max-h-64">
104104
{JSON.stringify(toolResult.toolResult, null, 2)}
105105
</pre>
106106
</>

0 commit comments

Comments
 (0)