feat: 优化思考过程显示的换行效果

This commit is contained in:
郑恩 2025-02-10 10:12:33 +08:00 committed by 亢奋猫
parent 81d4accacf
commit f3940159b3

View File

@ -42,7 +42,7 @@ const MessageThought: FC<Props> = ({ message }) => {
{isThinking && <BarLoader color="#9254de" />}
</MessageTitleLabel>
),
children: <ReactMarkdown>{message.reasoning_content}</ReactMarkdown>
children: <ReactMarkdown className="markdown">{message.reasoning_content}</ReactMarkdown>
}
]}
/>