From d59ac05bdf918cabc75cb18bd20ffbd73efadb0b Mon Sep 17 00:00:00 2001 From: MistahSanta Date: Mon, 2 Sep 2024 02:45:17 -0500 Subject: [PATCH] remove openid scope --- src/server/auth.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/auth.ts b/src/server/auth.ts index b5360679..5ed926ef 100644 --- a/src/server/auth.ts +++ b/src/server/auth.ts @@ -168,7 +168,7 @@ export const authOptions: NextAuthOptions = { authorization: { url: "https://accounts.google.com/o/oauth2/auth", params: { - scope: "openid https://www.googleapis.com/auth/calendar", + scope: "https://www.googleapis.com/auth/calendar", prompt: "consent", access_type: "offline", response_type: "code",