mirror of
https://github.com/domfelipe/mika-agent-assist.git
synced 2026-08-07 11:36:42 +00:00
Changes
Co-authored-by: domfelipe <53182096+domfelipe@users.noreply.github.com>
This commit is contained in:
parent
c0106e1b9e
commit
d33261f798
1 changed files with 11 additions and 0 deletions
|
|
@ -127,6 +127,17 @@ export function BotFatherWizard({ agentName, fullName, onActivated, onSkip }: Pr
|
|||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||
}, [phase, validatedBot]);
|
||||
|
||||
if (phase === "awaiting_start" || phase === "captured") {
|
||||
return (
|
||||
<AwaitingStartPanel
|
||||
botUsername={validatedBot?.bot_username ?? ""}
|
||||
botName={validatedBot?.bot_name ?? agentName}
|
||||
captured={phase === "captured"}
|
||||
onOpenBot={handleOpenMyBot}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
return (
|
||||
<div className="grid gap-8 lg:grid-cols-2 lg:gap-10 items-start">
|
||||
{/* COLUNA ESQUERDA — passos */}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue