The goal is to use the domain_hint parameter
For example if the application specifies domain_hint=facebook.com, sign-in goes directly to the Facebook sign-in page.
Url Parameter:
"https://{tenant}.b2clogin.com/{tenant}.onmicrosoft.com/{policy}/oauth2/v2.0/authorize?client_id{ClientId}&response_type=code&scope={Scope}&domain_hint=facebook.com"
Code:
let loginRequest = {
extraQueryParameters: {domain_hint: 'facebook.com'}
}
myMSALObj.loginPopup(loginRequest);
Here two Microsoft doc links that explain how to do it.