diff --git a/components/custom/auth-form.tsx b/components/custom/auth-form.tsx index 08610ff..2bbd08d 100644 --- a/components/custom/auth-form.tsx +++ b/components/custom/auth-form.tsx @@ -1,17 +1,19 @@ -import { Input } from "../ui/input"; -import { Label } from "../ui/label"; +import Form from 'next/form'; + +import { Input } from '../ui/input'; +import { Label } from '../ui/label'; export function AuthForm({ action, children, - defaultEmail = "", + defaultEmail = '', }: { action: any; children: React.ReactNode; defaultEmail?: string; }) { return ( -
+