From 468f95b03f552d1f124a9fd423006abfa79383fd Mon Sep 17 00:00:00 2001 From: shadcn Date: Mon, 31 Oct 2022 22:41:13 +0400 Subject: [PATCH] fix: temporarily disable auth --- app/(auth)/login/page.tsx | 2 +- app/(auth)/register/page.tsx | 2 +- components/user-auth-form.tsx | 44 ++++++++++++++++++----------------- 3 files changed, 25 insertions(+), 23 deletions(-) diff --git a/app/(auth)/login/page.tsx b/app/(auth)/login/page.tsx index a3da97c..467c248 100644 --- a/app/(auth)/login/page.tsx +++ b/app/(auth)/login/page.tsx @@ -8,7 +8,7 @@ export default function LoginPage() {
<> diff --git a/app/(auth)/register/page.tsx b/app/(auth)/register/page.tsx index 30898b7..057a240 100644 --- a/app/(auth)/register/page.tsx +++ b/app/(auth)/register/page.tsx @@ -8,7 +8,7 @@ export default function RegisterPage() {
Login diff --git a/components/user-auth-form.tsx b/components/user-auth-form.tsx index 92dbf1f..d50383c 100644 --- a/components/user-auth-form.tsx +++ b/components/user-auth-form.tsx @@ -26,29 +26,30 @@ export function UserAuthForm({ className, ...props }: UserAuthFormProps) { const [isLoading, setIsLoading] = React.useState(false) async function onSubmit(data: FormData) { - setIsLoading(true) - - const signInResult = await signIn("email", { - email: data.email.toLowerCase(), - redirect: false, - callbackUrl: `${window.location.origin}/dashboard`, - }) - - setIsLoading(false) - - if (!signInResult?.ok) { - return toast({ - title: "Something went wrong.", - message: "Your post was not saved. Please try again.", - type: "error", - }) - } - return toast({ - title: "Check your email", - message: "We sent you a login link. Be sure to check your spam too.", - type: "success", + message: + "I've temporarily disabled authentication until I figure out a deployment issue.", + type: "error", }) + // setIsLoading(true) + // const signInResult = await signIn("email", { + // email: data.email.toLowerCase(), + // redirect: false, + // callbackUrl: `${window.location.origin}/dashboard`, + // }) + // setIsLoading(false) + // if (!signInResult?.ok) { + // return toast({ + // title: "Something went wrong.", + // message: "Your post was not saved. Please try again.", + // type: "error", + // }) + // } + // return toast({ + // title: "Check your email", + // message: "We sent you a login link. Be sure to check your spam too.", + // type: "success", + // }) } return ( @@ -96,6 +97,7 @@ export function UserAuthForm({ className, ...props }: UserAuthFormProps) {