ngOnInit not being called after router.navigate
My Angular app is all of a sudden not calling ngOnInit() after router.navigation() which means my components do not load correctly. I thought it may have been due to some changes I made but reverting the changes did not resolve the issue. Example where normal navigation causes component not to load correctly; This page is navigated to by the following code listing: this.router.navigate(['/result', this.params.data._id]); : Reloading the page, the component is loaded correctly: Here are some of my code listings, app.module.ts @NgModule({ imports: [ BrowserModule, FormsModule, AppRoutingModule,