Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
RojhatToptamus committed Jun 23, 2024
1 parent 9ede5d3 commit 07ea532
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions packages/nextjs/components/forms/CreateAttestationForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,9 @@ const CreateAttestationForm = () => {
router.push("/dashboard");
}, 5000);
}
}, [isPending, isConfirming, isConfirmed,router]);
}, [isPending, isConfirming, isConfirmed, router]);

const handleSubmit = (formData: FormData) => {

};
const handleSubmit = (formData: FormData) => {};

return (
<div className="">
Expand Down
2 changes: 1 addition & 1 deletion packages/nextjs/components/forms/RegisterSchemaForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const RegisterSchemaForm = () => {
router.push("/dashboard");
}, 5000);
}
}, [isPending, isConfirming, isConfirmed,router]);
}, [isPending, isConfirming, isConfirmed, router]);

const handleSubmit = (formData: FormData) => {
const name = formData.get("name");
Expand Down

0 comments on commit 07ea532

Please sign in to comment.