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>
{state !== "success" && (
<div className="mt-6 flex justify-end"> <div className="mt-6 flex justify-end">
<Button onClick={onNext} disabled={state !== "success"}> <Button onClick={onNext} disabled>
Próximo Próximo
</Button> </Button>
</div> </div>
)}
</div> </div>
); );
} }