chore: remove debug messages

This commit is contained in:
Per Stark
2025-05-16 10:04:11 +02:00
parent b93e7b5299
commit 45cd472d8b

View File

@@ -105,9 +105,7 @@
} }
function scrollChatToBottom() { function scrollChatToBottom() {
console.log("scrolling chat");
const chatContainer = document.getElementById('chat_container'); const chatContainer = document.getElementById('chat_container');
console.log(chatContainer);
if (chatContainer) chatContainer.scrollTop = chatContainer.scrollHeight; if (chatContainer) chatContainer.scrollTop = chatContainer.scrollHeight;
} }