Add open link button to manual verification alert

cgen-efacf8da9cd74cc5939205453647e218
This commit is contained in:
Builder.io 2025-10-14 07:16:15 +00:00
parent 303f8091ea
commit eb9291a7c2

View file

@ -198,6 +198,15 @@ export default function Login() {
<p className="mt-2 break-all rounded bg-background/60 px-3 py-2 font-mono text-xs text-foreground/90">
{manualVerificationLink}
</p>
<Button
type="button"
size="sm"
variant="outline"
className="mt-3 border-aethex-400/40"
onClick={() => window.open(manualVerificationLink, "_blank", "noopener")}
>
Open verification link
</Button>
</AlertDescription>
</Alert>
) : null}