From cf230fbd46e3a9ce6bd1acfcb1f578d6ad415cdd Mon Sep 17 00:00:00 2001 From: Zacharias-Brohn Date: Thu, 15 Jan 2026 13:51:10 +0100 Subject: [PATCH] changes --- components/Chat/ChatLayout.tsx | 5 ++--- components/Chat/MarkdownMessage.tsx | 8 ++++---- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/components/Chat/ChatLayout.tsx b/components/Chat/ChatLayout.tsx index 2c95bef..6087eaf 100644 --- a/components/Chat/ChatLayout.tsx +++ b/components/Chat/ChatLayout.tsx @@ -878,9 +878,8 @@ export default function ChatLayout() { - + {message.content} diff --git a/components/Chat/MarkdownMessage.tsx b/components/Chat/MarkdownMessage.tsx index 883aab3..767d0c7 100644 --- a/components/Chat/MarkdownMessage.tsx +++ b/components/Chat/MarkdownMessage.tsx @@ -219,14 +219,14 @@ function MarkdownContent({ content }: { content: string }) { ), h6: ({ children }) => ( - + {children} ), // Paragraphs and text p: ({ children }) => ( - + {children} ), @@ -267,13 +267,13 @@ function MarkdownContent({ content }: { content: string }) { return
    {children}
; } return ( - + {children} ); }, ol: ({ children }) => ( - + {children} ),