more dark mode fixes

This commit is contained in:
Ashwin Bhat
2024-11-24 14:26:39 -08:00
parent d567ff37e8
commit 47a87e1884
2 changed files with 2 additions and 2 deletions

View File

@@ -51,7 +51,7 @@ const ToolsTab = ({
{structuredResult.content.map((item, index) => (
<div key={index} className="mb-2">
{item.type === "text" && (
<pre className="bg-gray-50 p-4 rounded text-sm overflow-auto max-h-64">
<pre className="bg-gray-50 dark:bg-gray-800 dark:text-gray-100 p-4 rounded text-sm overflow-auto max-h-64">
{item.text}
</pre>
)}