Roman Jumatov
Roman Jumatov
I am experiencing the same problem with `inline-block`-tables. I am using openhtmltopdf to convert E-Mails into PDFs, in some cases I have HTML like: ```html ... ... ... ``` Each...
Are there any updates on this?
@JiHong88 I have built a mail client based on your editor. Everything works fine, but when I reply to complex HTML-Mails (I render the old mail in a blockquote inside...
> @JiHong88 I have built a mail client based on your editor. Everything works fine, but when I reply to complex HTML-Mails (I render the old mail in a blockquote...
Waiting for React 17 support
I can confirm that this is still an ongoing issue in `v0.30.2`
There is a workaround I am currently using but I still hope the issue to be resolved sooner or later. ```tsx const sliderRef = useRef(); if (sliderRef?.current) { if (sliderRef.current.state.breakpoint...
I don't like using `ref.current` as a `useEffect` dependency as this is considered an [anti-pattern](https://stackoverflow.com/questions/60476155/is-it-safe-to-use-ref-current-as-useeffects-dependency-when-ref-points-to-a-dom). In my case I only want this initially hence I omit the useEffect. Its also...
Several months have passed, is there any progress on this?
I encountered the same issue, and it only appeared when using `await userEvent.tab()`. I do **not wrap** `await userEvent.type(dateInput)` inside an act. While I believe this warning shouldn’t be triggered,...