diff --git a/apps/client/src/app/app.component.ts b/apps/client/src/app/app.component.ts index 14aae9a95..f6d227906 100644 --- a/apps/client/src/app/app.component.ts +++ b/apps/client/src/app/app.component.ts @@ -91,13 +91,13 @@ export class AppComponent implements OnDestroy, OnInit { private dialog: MatDialog, @Inject(DOCUMENT) private document: Document, private impersonationStorageService: ImpersonationStorageService, + private locationStrategy: LocationStrategy, private notificationService: NotificationService, private route: ActivatedRoute, private router: Router, private title: Title, private tokenStorageService: TokenStorageService, - private userService: UserService, - private locationStrategy: LocationStrategy + private userService: UserService ) { this.initializeTheme(); this.user = undefined; diff --git a/apps/client/src/app/components/header/header.component.ts b/apps/client/src/app/components/header/header.component.ts index 8849646ef..865312eae 100644 --- a/apps/client/src/app/components/header/header.component.ts +++ b/apps/client/src/app/components/header/header.component.ts @@ -97,12 +97,12 @@ export class HeaderComponent implements OnChanges { private dialog: MatDialog, private impersonationStorageService: ImpersonationStorageService, private layoutService: LayoutService, + private locationStrategy: LocationStrategy, private notificationService: NotificationService, private router: Router, private settingsStorageService: SettingsStorageService, private tokenStorageService: TokenStorageService, - private userService: UserService, - private locationStrategy: LocationStrategy + private userService: UserService ) { this.impersonationStorageService .onChangeHasImpersonation()