diff --git a/apps/client/pages/api/auth/[...nextauth].ts b/apps/client/pages/api/auth/[...nextauth].ts index 40348a75..485d75cb 100644 --- a/apps/client/pages/api/auth/[...nextauth].ts +++ b/apps/client/pages/api/auth/[...nextauth].ts @@ -102,7 +102,6 @@ export const authOptions = { isAdmin: { label: 'Admin', type: 'checkbox' }, }, async authorize(credentials) { - // Take credentials and convert the isAdmin string to a boolean const { firstName, lastName, email, password, isAdmin } = await validateCredentials( { ...credentials,