From 215fb8b54379b5f015d13dcbbe42b5e93b3ae44d Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Thu, 19 Mar 2026 13:41:26 -0300 Subject: [PATCH] feat: Auto-open chat maximized for all bots --- ui/suite/partials/desktop-inner.html | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/ui/suite/partials/desktop-inner.html b/ui/suite/partials/desktop-inner.html index d88c7e4..3e033e5 100644 --- a/ui/suite/partials/desktop-inner.html +++ b/ui/suite/partials/desktop-inner.html @@ -595,11 +595,7 @@ 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 try { const response = await fetch("/suite/partials/chat.html"); if (response.ok) {