Timothy J. Baek 10 月之前
父节点
当前提交
0f4f01cee9
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/lib/components/chat/Chat.svelte

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