From 45cd472d8bdae33f2a462629b89c0cba18298c9e Mon Sep 17 00:00:00 2001 From: Per Stark Date: Fri, 16 May 2025 10:04:11 +0200 Subject: [PATCH] chore: remove debug messages --- html-router/templates/chat/base.html | 2 -- 1 file changed, 2 deletions(-) diff --git a/html-router/templates/chat/base.html b/html-router/templates/chat/base.html index 8fc4247..835fa2f 100644 --- a/html-router/templates/chat/base.html +++ b/html-router/templates/chat/base.html @@ -105,9 +105,7 @@ } function scrollChatToBottom() { - console.log("scrolling chat"); const chatContainer = document.getElementById('chat_container'); - console.log(chatContainer); if (chatContainer) chatContainer.scrollTop = chatContainer.scrollHeight; }