Maybe it will help someone. You can add to options queryParams: { prompt: 'select_account', } Example:
const { error } = await supabase.auth.signInWithOAuth({
provider: 'google',
options: {
scopes: SIGN_IN_GOOGLE_API,
queryParams: {
prompt: 'select_account',
},
},
})