aboutsummaryrefslogtreecommitdiff
path: root/src/app/components/profile/profile.component.ts
diff options
context:
space:
mode:
authorSyndamia <kamen.d.mladenov@protonmail.com>2021-04-08 09:25:37 +0300
committerSyndamia <kamen.d.mladenov@protonmail.com>2021-04-08 09:25:37 +0300
commit4dbd4298762967657d01d9cd8cd3dd9b31250686 (patch)
tree981042913a69ffc4760463b88c8003fc202432b4 /src/app/components/profile/profile.component.ts
parent3b778aef651fe9383a281c4c2999f21312ea28ba (diff)
downloadDevHive-Angular-4dbd4298762967657d01d9cd8cd3dd9b31250686.tar
DevHive-Angular-4dbd4298762967657d01d9cd8cd3dd9b31250686.tar.gz
DevHive-Angular-4dbd4298762967657d01d9cd8cd3dd9b31250686.zip
Removed bad dependency injection in profile component
Diffstat (limited to 'src/app/components/profile/profile.component.ts')
-rw-r--r--src/app/components/profile/profile.component.ts2
1 files changed, 1 insertions, 1 deletions
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);
}