From 931bff0c24347694f5c61190303a69883dd04b28 Mon Sep 17 00:00:00 2001 From: Madhab Sahoo Date: Fri, 27 Sep 2024 14:29:40 +0530 Subject: [PATCH] Updated changes as per alphabetical order --- apps/client/src/app/app.component.ts | 4 ++-- apps/client/src/app/components/header/header.component.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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()