How to show this menu when signing in with Google?

Right now, when I login with google it just logs me in to the first email directly. I would like the ability to sign in with other accounts.
image.png
Solution
Figured it out
Added this to auth.ts
  socialProviders: {
    google: {
      prompt: "select_account", // Added this line
      clientId: process.env.GOOGLE_CLIENT_ID as string,
      clientSecret: process.env.GOOGLE_CLIENT_SECRET as string,
    },
  }
Was this page helpful?