How Do I Trace An `emptyerror: No Elements In Sequence` Bug In An Angular Project
I'm working on an Angular project that's throwing an error: core.js:1350 ERROR Error: Uncaught (in promise): EmptyError: no elements in sequence but I can't seem to trace it to any
Solution 1:
This bug is due to the last version of Angular's Router.
You can reverse your version or append pathMatch: 'full'
to all of your routes.
See github issue.
Post a Comment for "How Do I Trace An `emptyerror: No Elements In Sequence` Bug In An Angular Project"