Co-authored-by: domfelipe <53182096+domfelipe@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot] 2026-04-25 13:19:22 +00:00
parent 37e7932529
commit 22166a1c76

View file

@ -101,11 +101,13 @@ export function StepToken({ onValidated, onNext, validated }: Props) {
)} )}
</div> </div>
<div className="mt-6 flex justify-end"> {state !== "success" && (
<Button onClick={onNext} disabled={state !== "success"}> <div className="mt-6 flex justify-end">
Próximo <Button onClick={onNext} disabled>
</Button> Próximo
</div> </Button>
</div>
)}
</div> </div>
); );
} }