Update default text styles (#8291)

This commit is contained in:
Miguel Solorio
2025-09-11 14:22:16 -07:00
committed by GitHub
parent aba2a9932c
commit 67f7dae4e3
7 changed files with 21 additions and 10 deletions

View File

@@ -112,7 +112,9 @@ export const ToolMessage: React.FC<ToolMessageProps> = ({
) : typeof resultDisplay === 'string' && !renderOutputAsMarkdown ? (
<MaxSizedBox maxHeight={availableHeight} maxWidth={childWidth}>
<Box>
<Text wrap="wrap">{resultDisplay}</Text>
<Text wrap="wrap" color={theme.text.primary}>
{resultDisplay}
</Text>
</Box>
</MaxSizedBox>
) : typeof resultDisplay === 'object' &&