From 32b150cf92f1c4c4c2443477d1d8e777e2f23e42 Mon Sep 17 00:00:00 2001 From: neulhan Date: Sun, 6 Apr 2025 00:31:35 +0900 Subject: [PATCH] fix : Resolved a styling issue --- src/components/thread/index.tsx | 4 ++-- src/components/thread/messages/human.tsx | 2 +- src/components/thread/messages/tool-calls.tsx | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/components/thread/index.tsx b/src/components/thread/index.tsx index 10facc7..8a40a36 100644 --- a/src/components/thread/index.tsx +++ b/src/components/thread/index.tsx @@ -325,7 +325,7 @@ export function Thread() { } footer={ -
+
{!chatStarted && (
diff --git a/src/components/thread/messages/human.tsx b/src/components/thread/messages/human.tsx index e6ca4c5..ac6974b 100644 --- a/src/components/thread/messages/human.tsx +++ b/src/components/thread/messages/human.tsx @@ -84,7 +84,7 @@ export function HumanMessage({ onSubmit={handleSubmitEdit} /> ) : ( -

+

{contentString}

)} diff --git a/src/components/thread/messages/tool-calls.tsx b/src/components/thread/messages/tool-calls.tsx index 816a440..2425f68 100644 --- a/src/components/thread/messages/tool-calls.tsx +++ b/src/components/thread/messages/tool-calls.tsx @@ -44,7 +44,7 @@ export function ToolCalls({ {isComplexValue(value) ? ( - + {JSON.stringify(value, null, 2)} ) : ( @@ -148,7 +148,7 @@ export function ToolResult({ message }: { message: ToolMessage }) { {isComplexValue(value) ? ( - + {JSON.stringify(value, null, 2)} ) : (