fix: button rendering when using streaming (#9957)

This commit is contained in:
crazywoola 2024-10-28 19:23:31 +08:00 committed by GitHub
parent de57af46c0
commit de850262b8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -252,7 +252,7 @@ const MarkdownButton = ({ node }: any) => {
className={cn('!h-8 !px-3 select-none')}
onClick={() => onSend?.(message)}
>
<span className='text-[13px]'>{node.children[0].value}</span>
<span className='text-[13px]'>{node.children[0]?.value || ''}</span>
</Button>
}
MarkdownButton.displayName = 'MarkdownButton'