Steven Hutchinson

Results 5 comments of Steven Hutchinson

[Hampr](https://hampr.com.au/) ![Hampr_icon_colour_80x120](https://user-images.githubusercontent.com/4055977/124222264-bec87780-db44-11eb-8c94-e98ba9c49857.png)

@matt-dutchie I used a different approach to solve the same issue. ``` router.push({ pathname: router.pathname, query: router.query }, { search, pathname }, { shallow: true }); // and router.replace({ pathname:...

I have the same hanging issue, but am attempting to run via bun. It looks like there's an issue with the version of openid-client being used in xero-node. Are there...

Ahh the plot thickens! package.json contents ``` "express": "^4.18.3", "routing-controllers": "^0.10.4", "reflect-metadata": "^0.2.1", ``` package-lock.json contents ``` "node_modules/express": { "version": "4.18.3", ... }, "node_modules/routing-controllers": { "version": "0.10.4", ... }, "node_modules/reflect-metadata":...

Hmm so if I'm understanding correctly `routing-controllers` has some built-in mechanism to prevent multiple matching handlers being invoked. But this only stops the control-flow when any route EXCEPT the last...