Skip to content

Commit 530eb1f

Browse files
committed
I lied, removing unneded logs
1 parent 1e2a37c commit 530eb1f

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

web-app/admin/src/app/admin/admin-users/user-details/user-details.component.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,6 @@ export class UserDetailsComponent implements OnInit {
202202

203203
this.userService.getUser(userId).then((user: User) => {
204204
this.user = user;
205-
console.log(user)
206205
// determine if viewing own profile to adjust UI (e.g., hide disable card)
207206
this.isSelf =
208207
!!this.userService.myself && this.userService.myself.id === user.id;
@@ -473,7 +472,6 @@ export class UserDetailsComponent implements OnInit {
473472
this.iconPreviewUrl = null;
474473
this.avatarPreviewUrl = null;
475474
this.removeIconSelected = false;
476-
console.log(this.iconMetadata);
477475
if (!this.iconMetadata) this.iconMetadata = { type: 'none' };
478476
if (this.iconMetadata.type === 'create') {
479477
if (!this.iconMetadata.text) this.setIconInitials(this.user.displayName);

0 commit comments

Comments
 (0)