You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you have a future state foo.** and you lazy load a NgModule with states in this order:
foo.bar
foo
foo.baz
The foo.bar state is "lost".
This is because instead of being queued until foo is ready, it attaches as a child to the future state foo.** which is then removed when foo is registered.
The text was updated successfully, but these errors were encountered:
If you have a future state
foo.**
and you lazy load a NgModule with states in this order:foo.bar
foo
foo.baz
The
foo.bar
state is "lost".This is because instead of being queued until
foo
is ready, it attaches as a child to the future statefoo.**
which is then removed whenfoo
is registered.The text was updated successfully, but these errors were encountered: