From 4fe61101604d090050a76a2701fcde308314a345 Mon Sep 17 00:00:00 2001 From: Justin Brooks Date: Sat, 12 Oct 2024 00:30:55 -0400 Subject: [PATCH] remove oidc error check --- packages/auth/src/config.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/packages/auth/src/config.ts b/packages/auth/src/config.ts index b74d83ef..b2cc09e9 100644 --- a/packages/auth/src/config.ts +++ b/packages/auth/src/config.ts @@ -116,7 +116,3 @@ export const authConfig: NextAuthConfig = { }, }, } satisfies NextAuthConfig; - -if (authConfig.providers.length === 0) { - throw new Error("No authentication providers configured"); -}