From 4dbd4298762967657d01d9cd8cd3dd9b31250686 Mon Sep 17 00:00:00 2001 From: Syndamia Date: Thu, 8 Apr 2021 09:25:37 +0300 Subject: Removed bad dependency injection in profile component --- src/app/components/profile/profile.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/app/components/profile/profile.component.ts') diff --git a/src/app/components/profile/profile.component.ts b/src/app/components/profile/profile.component.ts index 9914b7f..f9f64b5 100644 --- a/src/app/components/profile/profile.component.ts +++ b/src/app/components/profile/profile.component.ts @@ -30,7 +30,7 @@ export class ProfileComponent implements OnInit { public user: User; public userPosts: Post[]; - constructor(private _titleService: Title, private _fb: FormBuilder, private _router: Router, private _userService: UserService, private _friendService: FriendService, private _languageService: LanguageService, private _technologyService: TechnologyService, private _feedService: FeedService, private _location: Location, private _tokenService: TokenService) { + constructor(private _titleService: Title, private _router: Router, private _userService: UserService, private _friendService: FriendService, private _languageService: LanguageService, private _technologyService: TechnologyService, private _feedService: FeedService, private _location: Location, private _tokenService: TokenService) { this._titleService.setTitle(this._title); } -- cgit v1.2.3