Get started by editing diff --git a/app/signin/page.tsx b/app/signin/page.tsx index df6697c..f6c839a 100644 --- a/app/signin/page.tsx +++ b/app/signin/page.tsx @@ -1,14 +1,14 @@ 'use client' -import { authenticate } from '@/app/lib/actions' +import { signin } from '@/app/lib/actions' import { useFormState, useFormStatus } from 'react-dom' export default function Page() { - const [errorMessage, dispatch] = useFormState(authenticate, undefined) + const [errorMessage, dispatch] = useFormState(signin, undefined) return (