From d08abbdf89dcd5f620fdae2ed76d56ffc03382d6 Mon Sep 17 00:00:00 2001 From: Karol Chudzik Date: Sat, 26 Oct 2024 12:37:26 +0200 Subject: [PATCH] Fix docs --- apps/www/content/docs/components/chat.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/www/content/docs/components/chat.mdx b/apps/www/content/docs/components/chat.mdx index d6d1af9..12a98f1 100644 --- a/apps/www/content/docs/components/chat.mdx +++ b/apps/www/content/docs/components/chat.mdx @@ -153,14 +153,14 @@ export function CustomChat() { return ( - {isEmpty && append ? ( + {isEmpty ? ( ) : null} - {messages.length > 0 ? ( + {!isEmpty ? (