From 12058cb4dbcb2ec8135dfa8f57b20b7448f17307 Mon Sep 17 00:00:00 2001 From: Kristof De Langhe Date: Tue, 11 Sep 2018 08:31:41 +0200 Subject: [PATCH] 54472: Remove console logs --- .../create-collection-page/create-collection-page.component.ts | 1 - .../create-community-page/create-community-page.component.ts | 1 - 2 files changed, 2 deletions(-) diff --git a/src/app/+collection-page/create-collection-page/create-collection-page.component.ts b/src/app/+collection-page/create-collection-page/create-collection-page.component.ts index f94547c8fb..1c2f78bb06 100644 --- a/src/app/+collection-page/create-collection-page/create-collection-page.component.ts +++ b/src/app/+collection-page/create-collection-page/create-collection-page.component.ts @@ -52,7 +52,6 @@ export class CreateCollectionPageComponent { }))) }); this.collectionDataService.create(collection).subscribe((rd: RemoteData) => { - console.log(rd); if (rd.hasSucceeded) { this.router.navigateByUrl(''); } diff --git a/src/app/+community-page/create-community-page/create-community-page.component.ts b/src/app/+community-page/create-community-page/create-community-page.component.ts index 69012ca2a4..c79b6fa9cd 100644 --- a/src/app/+community-page/create-community-page/create-community-page.component.ts +++ b/src/app/+community-page/create-community-page/create-community-page.component.ts @@ -46,7 +46,6 @@ export class CreateCommunityPageComponent { }))) }); this.communityDataService.create(community).pipe(take(1)).subscribe((rd: RemoteData) => { - console.log(rd); if (rd.hasSucceeded) { this.router.navigateByUrl(''); }