From 3fa5ba438b03608b14a7a5d790941d567e3e273e Mon Sep 17 00:00:00 2001 From: Kishor Date: Sat, 3 Jan 2026 09:16:36 +0530 Subject: [PATCH] removing email from discord oauth --- web/auth.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/auth.ts b/web/auth.ts index 4a5e2f2..2572eda 100644 --- a/web/auth.ts +++ b/web/auth.ts @@ -4,7 +4,7 @@ import Discord from "next-auth/providers/discord" export const { handlers, signIn, signOut, auth } = NextAuth({ providers: [ Discord({ - authorization: "https://discord.com/api/oauth2/authorize?scope=identify+email+guilds", + authorization: "https://discord.com/api/oauth2/authorize?scope=identify+guilds", }), ], callbacks: {