diff options
| author | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-04-08 09:25:37 +0300 |
|---|---|---|
| committer | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-04-08 09:25:37 +0300 |
| commit | 4dbd4298762967657d01d9cd8cd3dd9b31250686 (patch) | |
| tree | 981042913a69ffc4760463b88c8003fc202432b4 /src/app/components/profile/profile.component.ts | |
| parent | 3b778aef651fe9383a281c4c2999f21312ea28ba (diff) | |
| download | DevHive-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.ts | 2 |
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); } |
