remove debug log

This commit is contained in:
Art Lowel
2020-07-15 18:16:45 +02:00
committed by GitHub
parent 8d399fdde8
commit eeec39bf3f

View File

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