diff --git a/pages/api/v1/auth/[...nextauth].ts b/pages/api/v1/auth/[...nextauth].ts index 17bcaad..7b6315f 100644 --- a/pages/api/v1/auth/[...nextauth].ts +++ b/pages/api/v1/auth/[...nextauth].ts @@ -1186,7 +1186,7 @@ export default async function auth(req: NextApiRequest, res: NextApiResponse) { providerAccountId: account?.providerAccountId, }, }); - if (existingUser && newSsoUsersDisabled) { + if (!existingUser && newSsoUsersDisabled) { return false; } }