diff --git a/libs/auth/src/angular/login/default-login-component.service.ts b/libs/auth/src/angular/login/default-login-component.service.ts index b897e5cf19..544ac336af 100644 --- a/libs/auth/src/angular/login/default-login-component.service.ts +++ b/libs/auth/src/angular/login/default-login-component.service.ts @@ -16,7 +16,7 @@ export class DefaultLoginComponentService implements LoginComponentService { constructor( protected cryptoFunctionService: CryptoFunctionService, protected environmentService: EnvironmentService, - // TODO-rr-bw: refactor to not use deprecated service + // TODO: refactor to not use deprecated service protected passwordGenerationService: PasswordGenerationServiceAbstraction, protected platformUtilsService: PlatformUtilsService, protected ssoLoginService: SsoLoginServiceAbstraction, diff --git a/libs/auth/src/angular/login/login.component.ts b/libs/auth/src/angular/login/login.component.ts index 762ff771f3..17bb9b97db 100644 --- a/libs/auth/src/angular/login/login.component.ts +++ b/libs/auth/src/angular/login/login.component.ts @@ -161,7 +161,7 @@ export class LoginComponent implements OnInit, OnDestroy { ngOnDestroy(): void { if (this.clientType === ClientType.Desktop) { - // TODO-rr-bw: refactor to not use deprecated broadcaster service. + // TODO: refactor to not use deprecated broadcaster service. this.broadcasterService.unsubscribe(BroadcasterSubscriptionId); } @@ -534,7 +534,7 @@ export class LoginComponent implements OnInit, OnDestroy { private async desktopOnInit(): Promise { await this.getLoginWithDevice(this.loggedEmail); - // TODO-rr-bw: refactor to not use deprecated broadcaster service. + // TODO: refactor to not use deprecated broadcaster service. this.broadcasterService.subscribe(BroadcasterSubscriptionId, async (message: any) => { this.ngZone.run(() => { switch (message.command) {