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 c67f553 commit d39668fCopy full SHA for d39668f
docs-website/scripts/deployment.ts
@@ -58,4 +58,7 @@ async function main() {
58
})
59
}
60
61
-main()
+main().catch((err) => {
62
+ console.error(err)
63
+ process.exit(1)
64
+})
website/scripts/deployment.ts
@@ -61,4 +61,7 @@ async function main() {
65
66
67
website/src/components/chat.tsx
@@ -489,6 +489,7 @@ function MessageRenderer({ message }: { message: WebsiteUIMessage }) {
489
return (
490
<ChatUserMessage className='my-4 text-[16px]' message={message}>
491
{message.parts.map((part, index) => {
492
+
493
if (part.type === 'text') {
494
return <span key={index}>{part.text}</span>
495
0 commit comments