fix: add text-textStandard to non-string args for light/dark mode (#1841)

This commit is contained in:
Kalvin C
2025-03-24 15:31:26 -07:00
committed by GitHub
parent dcec85f98a
commit 17f8fc087a

View File

@@ -71,8 +71,8 @@ export function ToolCallArguments({ args }: ToolCallArgumentsProps) {
return (
<div className="mb-2">
<div className="flex flex-row">
<span className="font-medium mr- min-w-[140px]2">{key}:</span>
<pre className="whitespace-pre-wrap">{content}</pre>
<span className="font-medium mr- text-textStandard min-w-[140px]2">{key}:</span>
<pre className="whitespace-pre-wrap text-textStandard">{content}</pre>
</div>
</div>
);