``` js const history = useQueries(createHistory)(); history.pushState(null, sameUrl, newQuery); ``` Does not trigger onEnter for route sameUrl. However, when listening on history, state changes are triggered: ``` js history.listen(function (location) { console.log(location.query); }) ``` I think onEnter should be called when changing query params. ? Using 1.0-rc1