Browse Source

Reorder constructor parameters in activities page component for consistency

pull/6611/head
AyushMishra 1 week ago
parent
commit
a0a19715d6
  1. 4
      apps/client/src/app/pages/portfolio/activities/activities-page.component.ts

4
apps/client/src/app/pages/portfolio/activities/activities-page.component.ts

@ -76,8 +76,8 @@ export class GfActivitiesPageComponent implements OnInit {
private impersonationStorageService: ImpersonationStorageService, private impersonationStorageService: ImpersonationStorageService,
private route: ActivatedRoute, private route: ActivatedRoute,
private router: Router, private router: Router,
private userService: UserService, private destroyRef: DestroyRef,
private destroyRef: DestroyRef private userService: UserService
) { ) {
this.routeQueryParams = route.queryParams this.routeQueryParams = route.queryParams
.pipe(takeUntilDestroyed(this.destroyRef)) .pipe(takeUntilDestroyed(this.destroyRef))

Loading…
Cancel
Save