From 93cb2be35d36e043c74cff1f274290dbed53e5db Mon Sep 17 00:00:00 2001 From: "Timothy J. Baek" Date: Mon, 23 Sep 2024 23:55:18 +0200 Subject: [PATCH] refac --- src/lib/components/chat/Chat.svelte | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib/components/chat/Chat.svelte b/src/lib/components/chat/Chat.svelte index 25928ddd7..9b490eca8 100644 --- a/src/lib/components/chat/Chat.svelte +++ b/src/lib/components/chat/Chat.svelte @@ -210,6 +210,8 @@ } else { console.log('Unknown message type', data); } + + history.messages[event.message_id] = message; } };