I have this following module
enter image description here
And I have it lazy load on a route like so
{
path: 'configuration/roles',
loadChildren: () => import('gizmonic-features-angular').then(f => f.ConfigurationRolesModule)
},
The problem I am running into though is when I navigate and come back a few times it is just appending the components not removing the old and adding the new one. This was working fine in Angular 12 so not sure what the issue could be.
I don’t use any standalone components either so doesn’t seem like a conflict that I have seen in some other posts.
enter image description here
I’ve tried a few things and nothing has really helped. Have been unable to find any real discussion about this issue anywhere
1