1
0
mirror of https://github.com/h3poteto/whalebird-desktop synced 2024-12-23 15:37:59 +01:00

Remove default form submit in accounts New

This commit is contained in:
AkiraFukushima 2024-01-28 11:30:50 +09:00
parent 58ea78e9a1
commit be5f037814
No known key found for this signature in database
GPG Key ID: B6E51BAC4DE1A957

View File

@ -117,7 +117,7 @@ export default function New(props: NewProps) {
<span>{error}</span> <span>{error}</span>
</Alert> </Alert>
)} )}
<form className="flex max-w-md flex-col gap-2"> <div className="flex max-w-md flex-col gap-2">
{sns === null ? ( {sns === null ? (
<> <>
<div className="block"> <div className="block">
@ -165,7 +165,7 @@ export default function New(props: NewProps) {
)} )}
</> </>
)} )}
</form> </div>
</DialogBody> </DialogBody>
</Dialog> </Dialog>
</> </>