From 0f4f01cee9551ba995bcdf6019f0d45b0e836138 Mon Sep 17 00:00:00 2001 From: "Timothy J. Baek" Date: Mon, 24 Jun 2024 14:00:48 -0700 Subject: [PATCH] fix --- src/lib/components/chat/Chat.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/components/chat/Chat.svelte b/src/lib/components/chat/Chat.svelte index 282ed2375..53376a656 100644 --- a/src/lib/components/chat/Chat.svelte +++ b/src/lib/components/chat/Chat.svelte @@ -534,7 +534,7 @@ const createdAtDate = new Date(createdAtTimestamp * 1000) .toISOString() .split('T')[0]; - acc.push(`${index + 1}. [${createdAtDate}]. ${doc[0]}`); + acc.push(`${index + 1}. [${createdAtDate}]. ${doc}`); return acc; }, []); }