From 7068c01b445d5ca3056f3b16f84fc7621a80c7a3 Mon Sep 17 00:00:00 2001 From: Mario Zechner Date: Mon, 6 Oct 2025 18:40:41 +0200 Subject: [PATCH] Remove debug console.log from ChatPanel --- packages/web-ui/src/ChatPanel.ts | 9 --------- 1 file changed, 9 deletions(-) diff --git a/packages/web-ui/src/ChatPanel.ts b/packages/web-ui/src/ChatPanel.ts index 8715011a..128e7413 100644 --- a/packages/web-ui/src/ChatPanel.ts +++ b/packages/web-ui/src/ChatPanel.ts @@ -152,15 +152,6 @@ export class ChatPanel extends LitElement { const isMobile = this.windowWidth < BREAKPOINT; - console.log("[ChatPanel Debug]", { - windowWidth: this.windowWidth, - breakpoint: BREAKPOINT, - isMobile, - showArtifactsPanel: this.showArtifactsPanel, - hasArtifacts: this.hasArtifacts, - artifactCount: this.artifactCount, - }); - // Set panel props if (this.artifactsPanel) { this.artifactsPanel.collapsed = !this.showArtifactsPanel;