We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e6765c commit fceaaabCopy full SHA for fceaaab
src/components/MessageItem.tsx
@@ -12,7 +12,7 @@ export const MessageItem: React.FC<MessageItemProps> = ({ message }) => {
12
13
return (
14
<Box marginBottom={1} paddingLeft={1}>
15
- <Text color={isUser ? "gray" : "cyan"}>
+ <Text color={isUser ? "gray" : undefined}>
16
{isUser ? `> ${indent(message.text)}` : `⏺ ${indent(message.text)}`}
17
</Text>
18
</Box>
0 commit comments