Martin Jujou

Results 11 comments of Martin Jujou

I had this issue and it wasnt due to multiple versions of react / react-dom In the custom tooling I use, the require cache was being cleared out (for a...

@Jarred-Sumner firstly great project 👍 love it. Im wondering how I could help. My first thoughts was to structure the documentation a bit more concisely, is that something that would...

I ended up working around this by doing these steps: In `next.config.js`: ``` webpack: (config, { isServer, webpack }) => { if (!isServer) { config.node = { dgram: 'empty', fs:...

This is fixed in this PR: https://github.com/luqin/react-icheck/pull/26

We are also getting this one - it happens alot and not sure why - anyone know what may be causing this ? There doesnt seem to be anything special...

I have solved this issue (its not pretty) I hijack mouse enter and touch events when the user interacts with the overlaying cards eg: `onMouseEnter={this.onMouseEnter}` can be added to the...

Ok thanks for clarifying @dfahlander - i assume you mean this one: https://github.com/dfahlander/Dexie.js/issues/1027 I also see multiple databases in chrome also - same sort of issue with chrome dev tools...

Just a quick note, I was using this library until I found: https://github.com/thebuilder/react-intersection-observer Which uses `IntersectionObserver` under the hood Works quite nicely for my use case and far more performant...

The edge issue i worked around by adding some `rootMargin` as mentioned above Not sure about the mobile issues he mentions, I never came across these

css modules is now supported in `create-react-app` - that article that was linked is outdated now