mirror of
https://github.com/domfelipe/mika-agent-assist.git
synced 2026-08-07 10:16:43 +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
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||||
}, [phase, validatedBot]);
|
}, [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 (
|
return (
|
||||||
<div className="grid gap-8 lg:grid-cols-2 lg:gap-10 items-start">
|
<div className="grid gap-8 lg:grid-cols-2 lg:gap-10 items-start">
|
||||||
{/* COLUNA ESQUERDA — passos */}
|
{/* COLUNA ESQUERDA — passos */}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue