From b2d320e767a92b433b995ca783b1604e7a0d289d Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Thu, 19 Mar 2026 15:14:02 -0300 Subject: [PATCH] fix: Auto-open chat maximized for all bots in desktop.html --- ui/suite/desktop.html | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/ui/suite/desktop.html b/ui/suite/desktop.html index f0ef8e3..787d0ca 100644 --- a/ui/suite/desktop.html +++ b/ui/suite/desktop.html @@ -797,11 +797,8 @@ const pathParts = window.location.pathname.split('/'); const botName = pathParts[1] || 'default'; - // Bots where chat should be maximized by default - const botsWithMaximizedChat = ['cristo', 'salesianos']; - - // Auto-open Chat window maximized (only for configured bots) - if (window.wm && botsWithMaximizedChat.includes(botName)) { + // Auto-open Chat window maximized for all bots + if (window.wm) { try { const response = await fetch( "/suite/partials/chat.html",