From bf474b7e0afe053b521420cbef63877a187725b3 Mon Sep 17 00:00:00 2001 From: Antonin Coquet <ext.sopra.acoquet@grandlyon.com> Date: Thu, 11 Mar 2021 14:03:42 +0100 Subject: [PATCH] fix: remove consolelog --- src/app/profile/profile.component.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/app/profile/profile.component.ts b/src/app/profile/profile.component.ts index 4c1c5e758..0b3b1d36c 100644 --- a/src/app/profile/profile.component.ts +++ b/src/app/profile/profile.component.ts @@ -25,7 +25,6 @@ export class ProfileComponent implements OnInit { ngOnInit(): void { this.profileService.getProfile().then((profile) => { this.userProfile = profile; - console.log(this.userProfile.profileImage) this.structures = []; profile.structuresLink.forEach((structureId) => { this.structureService.getStructureWithOwners(structureId, profile).subscribe((s) => { -- GitLab