Make tool params non-bold

This commit is contained in:
akhisud3195 2025-09-03 19:38:45 +04:00
parent 7e32fc4a04
commit 2e8e3c89cb

View file

@ -45,7 +45,7 @@ export function ToolParamCard({
aria-expanded={expanded}
>
{expanded ? <ChevronDown className="w-4 h-4 text-gray-400" /> : <ChevronRight className="w-4 h-4 text-gray-400" />}
<span className="text-sm font-semibold text-gray-900 dark:text-gray-100 flex-1 text-left truncate">{param.name}</span>
<span className="text-sm font-normal text-gray-900 dark:text-gray-100 flex-1 text-left truncate">{param.name}</span>
{!readOnly && (
<Button
variant="tertiary"