Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(perf): don't delay routing events
This was like this due to an older performance issue where the popstate handler (that this code runs in) was taking a long time leading to UI lag. So the processing of the events and subsequent react re-render was moved to the next tick. However the delay introduced by moving it to the next tick is actually worse
- Loading branch information