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
My issue fixed by wrapping the router navigation command in ngZone. Please check the code below
in constructor add "private zone: NgZone".
private zone: NgZone this.zone.run(() => { this.router.navigate(['/login']); });