DoneDeal0

Results 16 comments of DoneDeal0

+1. The lib is awesome on every browser, but safari freezes. The lib thus can't be used on a pro application. It's a pity because it works so smoothly otherwise....

Hi @EliasTouil , you can write this: ``` function MyImageComponent({image}){ const [error, setError] = useState(false); const picture = new Image(); picture.src = image; picture.onerror = () => setError(true); return error...

Yes, it will load the image twice, however, it will only be rendered once in the dom, so don't worry, it's not a performance killer.

Hi, it was a stupid mistake, I actually instantiated react-query with `const client = new QueryClient()` in a project, and added it to broadcastQueryClient as such, whereas I had to...

I've set a 24hours cacheTime on this request. I'll make a public repo with a simple node server and a basic react-query app tonight or tomorrow evening and post it...

@TkDodo I've updated the main question so as not to open a new thread. The exemple code is very short and to the point. Since a public repo may not...

The idea would be to see changes immediately on the text area. For example: - I type `hello world` in the text area - I select the substring `world` -...

I've tried Lexical but it's not that great. It export a tree of nodes instead of a simple template string.

@Paul6552 , @plouc I sent a pr to fix this issue: [#1797](https://github.com/plouc/nivo/pull/1797)

I also had this 99% issue. The fix was to remove all `.displayName = "blabla"` from components. Otherwise, I had an `unexpected token` error. I hope this tip may be...