I am using Angular 7 and facing an issue => after login the API GET calls successfully and the component receiving data too, but UI is not displaying that data.
Whe
This happens if you try injecting a custom made service:
constructor(private myService: MyService) { }
while you forgot to provide it in the module configuration:
@NgModule({ providers: [ MyService ]