Filip Papranec
Filip Papranec
Scroll restoration happens too early before the page gets rendered after hitting browser back button
In my case I've fixed it with enabling experimental `scrollRestoration` by changing `next.config.js` to ```javascript module.exports = { experimental: { scrollRestoration: true } } ``` It's mentioned also here https://github.com/vercel/next.js/pull/22727#issuecomment-803276977
I would really appreciate it to have this merged :)
Maybe you could store you results to array and check if it meets conditions to stop the queue. ```js const results = []; queue.on('completed', (result) => { results.push(result); if (shouldCancel(results))...
@kalemi19 `utils` and its functions are no more accessible in `3.1.0.` after the installation of a package. How did you import it? Thanks. Edit: I got it to work by...
Hey guys, our team would be supper happy if you can implement this. We are using quick workaround for now but this would really help us a lot. Thanks !
@rfgamaral We are not using that workaround more less due to same reasons. What we do, is that we basically have option `allowSpaces` disabled and we use `_` character as...
Hey guys, I've found possible solution which is working for me very well. And it's pretty simple :) You just need to stop propagation of click event and right after...
> > Hey guys, I've found possible solution which is working for me very well. And it's pretty simple :) > > You just need to stop propagation of click...
@duhaime No I didn't run that transformation. However, I'd like to do it now according to your example :) But I've got a little problem. My transformation as user type...
@duhaime Here's the minimal example with a description. https://stackblitz.com/edit/react-ts-yhhppl?file=App.tsx