Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e73eb66

Browse files
committedFeb 5, 2025·
fix: form submit
1 parent e86142e commit e73eb66

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎src/routes/route-provider-create.tsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ export function RouteProviderCreate() {
2929
};
3030

3131
return (
32-
<Form onSubmit={handleSubmit} validationBehavior="aria">
33-
<ProviderDialog title="Create Provider">
32+
<ProviderDialog title="Create Provider">
33+
<Form onSubmit={handleSubmit} validationBehavior="aria">
3434
<DialogContent className="p-8">
3535
<ProviderForm provider={provider} setProvider={setProvider} />
3636
</DialogContent>
3737
<ProviderDialogFooter />
38-
</ProviderDialog>
39-
</Form>
38+
</Form>
39+
</ProviderDialog>
4040
);
4141
}

0 commit comments

Comments
 (0)
Please sign in to comment.