Daniel Reinoso

Results 23 comments of Daniel Reinoso

Hi @laggingreflex, I'm currently sick and can't investigate the issue at the moment. I should be able to next week.

@koraysels How does the `state.router.location` object look like, can you log it?

@kylemh I don't think it would make a difference for that, care to explain the issue you are seeing?

Hi @Prof-isaac, I've tried recreating this on the latest version of the library and Next.js 10 and couldn't recreate. Can you create a small reproduction in codesandbox or in one...

See https://github.com/danielr18/connected-next-router/pull/54. V3 is not compatible with Next.js 9.5, I would recommend updating to Next.js 10 and v4 of this library.

You can only use navigation actions or next/router methods client side, so make sure that you don't do it server side. You could use `if (typeof window !== 'undefined) {...

If you can create a small reproduction, I will be able to better help you. I would say UI_NAVIGATE action isn't needed, you could just dispatch connected-next-router actions where you...

Hey @vabatta, would you be able to create a PR for this? If the `onLocationChanged` function is modified, you can pass the action name from this line: https://github.com/danielr18/connected-next-router/blob/6445d392dcd34b4d2ae3ee3745264172ef6e2e9e/src/ConnectedRouter.ts#L82 The part...