Hello guys,
I'm using the page-router-outlet component to have beautiful transitions of my child components, but I'm getting the following error after returning in the backward navigation and my app freezes (The tap system doesn't work and the navigation stops working):

This is my routing configuration:
export const CatalogRoutes: Routes = [
{ path: '', component: HomeComponent,
children: [
{
path: '',
component: CategoryListComponent
},
{
path: 'category-list/:categoryId',
component: CategoryListComponent
},
{
path: 'product-list',
component: ProductListComponent
}
]
}
]
And the template of the Home component is:
<page-router-outlet></page-router-outlet>
Versions:
- "nativescript-angular": "4.4.1"
- "angular/router": "4.4.6"
Let me know what you think, thanks in advance!