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() ) }