From 42b1642932e934843c4d6cbae52b47381a30bd7c Mon Sep 17 00:00:00 2001 From: Dorian Date: Fri, 13 Mar 2026 17:36:18 +0000 Subject: [PATCH] fix: register bot at name confirmation, show credentials in setup step - Bot registered immediately after name check (poll mode default) - bot_id + secret available in bot-setup step with COPY GUIDE + CREDENTIALS - Webhook mode updates URL on existing bot instead of re-registering - Collapsible guide preview with credentials injected - Resets guide content when switching webhook/polling mode - Fix secret text overflow with break-all on profile page Co-Authored-By: Claude Opus 4.6 --- frontend/src/pages/BotProfilePage.vue | 4 +- frontend/src/pages/JoinBoutPage.vue | 114 ++++++++++++++------------ 2 files changed, 64 insertions(+), 54 deletions(-) diff --git a/frontend/src/pages/BotProfilePage.vue b/frontend/src/pages/BotProfilePage.vue index c2b9100..b0fedcd 100644 --- a/frontend/src/pages/BotProfilePage.vue +++ b/frontend/src/pages/BotProfilePage.vue @@ -850,8 +850,8 @@ const tierClass = (t: number) => `tier-${t}`

NEW SECRET GENERATED

-
BOT_ID={{ regeneratedBotId }}
-
BOT_SECRET={{ regeneratedSecret }}
+
BOT_ID={{ regeneratedBotId }}
+
BOT_SECRET={{ regeneratedSecret }}

Save this now. It will not be shown again after you leave this page.

diff --git a/frontend/src/pages/JoinBoutPage.vue b/frontend/src/pages/JoinBoutPage.vue index 0d0d19e..7f5a39c 100644 --- a/frontend/src/pages/JoinBoutPage.vue +++ b/frontend/src/pages/JoinBoutPage.vue @@ -1,5 +1,5 @@