Currently i am working with firebase authentication. And found many of tutorials, they set custom parameters to provider like that
const provider = new firebase.auth.GoogleAuthProvider();
provider.setCustomParameters({ prompt: 'select_account' });
What this actually means setting custom parameters prompt ? Why we need to set custom parameters like that - in this case prompt: 'select_account' ?