From a9c4aa4ec4e1a5d46105a22f396dfce405518016 Mon Sep 17 00:00:00 2001 From: Khalim Conn-Kowlessar Date: Fri, 17 Oct 2025 19:19:21 +0000 Subject: [PATCH] minor --- src/app/api/auth/[...nextauth]/route.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/api/auth/[...nextauth]/route.ts b/src/app/api/auth/[...nextauth]/route.ts index c42d23e..9aeccbe 100644 --- a/src/app/api/auth/[...nextauth]/route.ts +++ b/src/app/api/auth/[...nextauth]/route.ts @@ -80,7 +80,7 @@ export const AuthOptions: NextAuthOptions = { pass: EMAIL_SERVER_PASSWORD, }, }, - from: EMAIL_FROM, + from: EMAIL_FROM, // noreply email maxAge: 60 * 60, // magic link valid for 1 hour sendVerificationRequest: MagicLinksEmail, }),