diff --git a/src/lib/components/chat/Chat.svelte b/src/lib/components/chat/Chat.svelte index 32c106038..ebd882dfc 100644 --- a/src/lib/components/chat/Chat.svelte +++ b/src/lib/components/chat/Chat.svelte @@ -1266,7 +1266,6 @@ } prompt = ''; - await tick(); // Reset chat input textarea const chatInputElement = document.getElementById('chat-input'); @@ -1308,9 +1307,6 @@ history.messages[messages.at(-1).id].childrenIds.push(userMessageId); } - // Wait until history/message have been updated - await tick(); - // focus on chat input const chatInput = document.getElementById('chat-input'); chatInput?.focus();