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; }, []); }