1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 16:53:34 +00:00

chore(feature-flag): Removed pm-28325-remove-pm-22110-disable-alternate-login-methods flag

This commit is contained in:
Todd Martin
2025-11-21 16:01:41 -05:00
committed by GitHub
parent aa2d263751
commit 23ac477bbc
5 changed files with 27 additions and 82 deletions

View File

@@ -205,14 +205,9 @@ export class LoginComponent implements OnInit, OnDestroy {
await this.loadRememberedEmail();
}
const disableAlternateLoginMethodsFlagEnabled = await this.configService.getFeatureFlag(
FeatureFlag.PM22110_DisableAlternateLoginMethods,
);
if (disableAlternateLoginMethodsFlagEnabled) {
// This SSO required check should come after email has had a chance to be pre-filled (if it
// was found in query params or was the remembered email)
await this.determineIfSsoRequired();
}
// This SSO required check should come after email has had a chance to be pre-filled (if it
// was found in query params or was the remembered email)
await this.determineIfSsoRequired();
}
private async desktopOnInit(): Promise<void> {