From 7faa5f1c9f416520a2ff586242c61bf1058748f1 Mon Sep 17 00:00:00 2001 From: Jared Palmer Date: Wed, 23 Oct 2024 12:33:19 -0400 Subject: [PATCH] Next.js 15 fast follows (#455) --- components/custom/auth-form.tsx | 12 +++++++----- components/custom/navbar.tsx | 21 +++++++++++---------- 2 files changed, 18 insertions(+), 15 deletions(-) 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 ( -
+