From 2a814b5b0b766b17ad7f8309625a90d006a00d82 Mon Sep 17 00:00:00 2001 From: Yannic Kilcher Date: Tue, 27 Dec 2022 13:57:55 +0100 Subject: [PATCH] Update website/src/pages/api/auth/[...nextauth].ts Co-authored-by: Ville Lahdenvuo --- website/src/pages/api/auth/[...nextauth].ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/src/pages/api/auth/[...nextauth].ts b/website/src/pages/api/auth/[...nextauth].ts index fbd0b3d9..2cfe08df 100644 --- a/website/src/pages/api/auth/[...nextauth].ts +++ b/website/src/pages/api/auth/[...nextauth].ts @@ -34,7 +34,7 @@ if (process.env.DISCORD_CLIENT_ID) { ); } -if (boolean(process.env.NODE_ENV === "development")) { +if (process.env.NODE_ENV === "development") { providers.push( CredentialsProvider({ name: "Debug Credentials",