diff --git a/apps/server/src/modules/auth/next-auth-options.ts b/apps/server/src/modules/auth/next-auth-options.ts index fc122c3dad..48ab728bda 100644 --- a/apps/server/src/modules/auth/next-auth-options.ts +++ b/apps/server/src/modules/auth/next-auth-options.ts @@ -158,6 +158,9 @@ export const NextAuthOptionsProvider: FactoryProvider = { clientSecret: config.auth.oauthProviders.google.clientSecret, checks: 'nonce', allowDangerousEmailAccountLinking: true, + authorization: { + params: { scope: 'openid email profile', prompt: 'select_account' }, + }, }) ); }