Mark Claus Nunes

Results 7 comments of Mark Claus Nunes

Andrew-Cottrell's suggestion works fine for me. Here is an example with Waypoint: e.g: [Codepen: CounterUp2 + Jquery + Waypoint](https://codepen.io/mnunes/pen/RXQqXz)

I am having a similar issue with `Tabs`, I also saw a StackOverflow question related to this: https://stackoverflow.com/questions/73333525/headless-ui-disclosure-not-working-with-styled-components I noticed the issue goes away when I remove the `ref` from...

I reviewed the issue over the weekend and it seems that the problem lies in the Typescript or Babel configurations. The code "satisfies Record" appears to be compiled as "satisfies,...

This [comment](https://github.com/apollographql/apollo-client/issues/4283#issuecomment-575695379) managed to get around it using errorPolicy: ```jsx ``` You can then target to find the element rendered by `if (error) return Error!;`

This issue seems similar to https://github.com/diegomura/react-pdf/issues/2335. Even though Babel isn't mentioned, it might be useful to look at the solution there. Installing `pako` fixed the issue for me initially, but...

> I just ran into this, I had to add the following to my `.yarnrc.yml` file: > > ``` > packageExtensions: > "@react-pdf/pdfkit@*": > dependencies: > "pako": "*" > ```...

I am not using react-redux or react-intl but here is what worked for a custom provider I wanted to access within a Document while using PDFViewer. ```tsx import { CustomProvider...