diff --git a/apps/browser/src/popup/app-routing.module.ts b/apps/browser/src/popup/app-routing.module.ts index 8102221b633..d16778067f7 100644 --- a/apps/browser/src/popup/app-routing.module.ts +++ b/apps/browser/src/popup/app-routing.module.ts @@ -17,7 +17,7 @@ import { extensionRefreshSwap } from "@bitwarden/angular/utils/extension-refresh import { AnonLayoutWrapperComponent, AnonLayoutWrapperData, - LoginComponentV2, + LoginComponent, LoginSecondaryContentComponent, PasswordHintComponent, RegistrationFinishComponent, @@ -434,7 +434,7 @@ const routes: Routes = [ state: "login", }, // TODO-rr-bw: add `satisfies DataProperties & ExtensionAnonLayoutWrapperData} children: [ - { path: "", component: LoginComponentV2 }, + { path: "", component: LoginComponent }, { path: "", component: LoginSecondaryContentComponent, outlet: "secondary" }, { path: "", component: EnvironmentSelectorComponent, outlet: "environment-selector" }, ], diff --git a/apps/desktop/src/app/app-routing.module.ts b/apps/desktop/src/app/app-routing.module.ts index 9e483d9552f..6d96602ec88 100644 --- a/apps/desktop/src/app/app-routing.module.ts +++ b/apps/desktop/src/app/app-routing.module.ts @@ -14,7 +14,7 @@ import { canAccessFeature } from "@bitwarden/angular/platform/guard/feature-flag import { AnonLayoutWrapperComponent, AnonLayoutWrapperData, - LoginComponentV2, + LoginComponent, LoginSecondaryContentComponent, PasswordHintComponent, RegistrationFinishComponent, @@ -166,7 +166,7 @@ const routes: Routes = [ pageTitle: "logInToBitwarden", }, children: [ - { path: "", component: LoginComponentV2 }, + { path: "", component: LoginComponent }, { path: "", component: LoginSecondaryContentComponent, outlet: "secondary" }, { path: "", diff --git a/apps/web/src/app/oss-routing.module.ts b/apps/web/src/app/oss-routing.module.ts index 90d87dfb4ce..d8d52ca3e7e 100644 --- a/apps/web/src/app/oss-routing.module.ts +++ b/apps/web/src/app/oss-routing.module.ts @@ -20,7 +20,7 @@ import { RegistrationStartSecondaryComponentData, SetPasswordJitComponent, RegistrationLinkExpiredComponent, - LoginComponentV2, + LoginComponent, LoginSecondaryContentComponent, LockIcon, UserLockIcon, @@ -202,7 +202,7 @@ const routes: Routes = [ children: [ { path: "", - component: LoginComponentV2, + component: LoginComponent, }, { path: "", diff --git a/libs/auth/src/angular/login/login.component.ts b/libs/auth/src/angular/login/login.component.ts index 78d81f3ac33..eb0e559c002 100644 --- a/libs/auth/src/angular/login/login.component.ts +++ b/libs/auth/src/angular/login/login.component.ts @@ -66,7 +66,7 @@ export enum LoginUiState { RouterModule, ], }) -export class LoginComponentV2 implements OnInit, OnDestroy { +export class LoginComponent implements OnInit, OnDestroy { @ViewChild("masterPasswordInputRef") masterPasswordInputRef: ElementRef; @Input() captchaSiteKey: string = null;