Skip to content
Snippets Groups Projects
Commit 12058cb4 authored by Kristof De Langhe's avatar Kristof De Langhe
Browse files

54472: Remove console logs

parent 79afa38a
No related branches found
No related tags found
No related merge requests found
......@@ -52,7 +52,6 @@ export class CreateCollectionPageComponent {
})))
});
this.collectionDataService.create(collection).subscribe((rd: RemoteData<DSpaceObject>) => {
console.log(rd);
if (rd.hasSucceeded) {
this.router.navigateByUrl('');
}
......
......@@ -46,7 +46,6 @@ export class CreateCommunityPageComponent {
})))
});
this.communityDataService.create(community).pipe(take(1)).subscribe((rd: RemoteData<DSpaceObject>) => {
console.log(rd);
if (rd.hasSucceeded) {
this.router.navigateByUrl('');
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment