From 54add0c24379c3b2a5a6074fd8bfd95e6f3111a9 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Sun, 26 Apr 2026 20:25:41 +0000 Subject: [PATCH] Changes Co-authored-by: domfelipe <53182096+domfelipe@users.noreply.github.com> --- src/routes/bem-vindo.tsx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/routes/bem-vindo.tsx b/src/routes/bem-vindo.tsx index 5fbe1fc..83d9bc0 100644 --- a/src/routes/bem-vindo.tsx +++ b/src/routes/bem-vindo.tsx @@ -43,6 +43,13 @@ function WelcomePage() { const [saving, setSaving] = useState(false); const [wizardOpen, setWizardOpen] = useState(false); + // Managed bot state + const [creatingBot, setCreatingBot] = useState(false); + const [waitingConfirm, setWaitingConfirm] = useState(false); + const [waitTimedOut, setWaitTimedOut] = useState(false); + const [previewUsername, setPreviewUsername] = useState(null); + const waitStartedAt = useRef(null); + const fullName = (profile?.full_name || "").trim(); const firstName = useMemo( () => (fullName.split(" ")[0] || "vocĂȘ").trim(),