From eeec39bf3ff6a19b449b813aea88b0d3eb806291 Mon Sep 17 00:00:00 2001 From: Art Lowel Date: Wed, 15 Jul 2020 18:16:45 +0200 Subject: [PATCH] remove debug log --- src/app/core/auth/auth.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/core/auth/auth.service.ts b/src/app/core/auth/auth.service.ts index f45fb824ff..85e5eebb9e 100644 --- a/src/app/core/auth/auth.service.ts +++ b/src/app/core/auth/auth.service.ts @@ -206,7 +206,7 @@ export class AuthService { return this.store.pipe( select(getAuthenticatedUserId), hasValueOperator(), - switchMap((id: string) => { console.log('ID: ', id); return this.epersonService.findById(id) }), + switchMap((id: string) => this.epersonService.findById(id)), getAllSucceededRemoteDataPayload() ) }