From 9504c9c9b4770017049b51b1db3d250f99068715 Mon Sep 17 00:00:00 2001 From: "Timothy J. Baek" Date: Mon, 24 Jun 2024 15:32:49 -0700 Subject: [PATCH] fix --- src/lib/components/chat/Chat.svelte | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/components/chat/Chat.svelte b/src/lib/components/chat/Chat.svelte index cad42111d..1f8fd9827 100644 --- a/src/lib/components/chat/Chat.svelte +++ b/src/lib/components/chat/Chat.svelte @@ -591,7 +591,7 @@ : undefined )}${ responseMessage?.userContext ?? null - ? `\n\nUser Context:\n${(responseMessage?.userContext ?? []).join('\n')}` + ? `\n\nUser Context:\n${responseMessage?.userContext ?? ''}` : '' }` } @@ -932,7 +932,7 @@ : undefined )}${ responseMessage?.userContext ?? null - ? `\n\nUser Context:\n${(responseMessage?.userContext ?? []).join('\n')}` + ? `\n\nUser Context:\n${responseMessage?.userContext ?? ''}` : '' }` }