diff --git a/console/src/app/app.component.ts b/console/src/app/app.component.ts index 78bd478345..3475c5c1f8 100644 --- a/console/src/app/app.component.ts +++ b/console/src/app/app.component.ts @@ -216,21 +216,6 @@ export class AppComponent { ) .subscribe((orgId) => this.newOrganizationService.setOrgId(orgId)); - // todo: think about this one - // this.authenticationService.authenticationChanged - // .pipe( - // filter(Boolean), - // switchMap(() => this.authService.getActiveOrg()), - // takeUntilDestroyed(this.destroyRef), - // ) - // .subscribe({ - // next: (org) => (this.org = org), - // error: async (err) => { - // console.error(err); - // return this.router.navigate(['/users/me']); - // }, - // }); - // this.isDarkTheme = this.themeService.isDarkTheme; this.isDarkTheme.pipe(takeUntilDestroyed(this.destroyRef)).subscribe((dark) => { const theme = dark ? 'dark-theme' : 'light-theme'; diff --git a/console/src/app/modules/nav/nav.component.html b/console/src/app/modules/nav/nav.component.html index 73338a4831..f6079f9d92 100644 --- a/console/src/app/modules/nav/nav.component.html +++ b/console/src/app/modules/nav/nav.component.html @@ -1,8 +1,6 @@