diff --git a/src/lib/components/chat/Chat.svelte b/src/lib/components/chat/Chat.svelte index 6fce08a8b..9f9cbd717 100644 --- a/src/lib/components/chat/Chat.svelte +++ b/src/lib/components/chat/Chat.svelte @@ -161,6 +161,8 @@ } } else if (type === 'message') { message.content += data.content; + } else if (type === 'replace') { + message.content = data.content; } else if (type === 'confirmation') { eventCallback = cb;