Alan
Alan
There is no way to achieve this at the moment. I'm currently trying to add such a feature and it's almost done, see #21
At the moment, I managed to target the main creator using `findMany` from the Metadata program. It works but I fear that it might be imprecise on some collections.
@apresmoi solutions worked for me too, using Gatsby 4. Thanks a lot !
Hi @jakoblind, I solved the same issue by loading the worker this way: ``` import { pdfjs } from "react-pdf" pdfjs.GlobalWorkerOptions.workerSrc = `//unpkg.com/pdfjs-dist@${pdfjs.version}/build/pdf.worker.min.js` ``` I found these instructions here even...
I found here that this issue comes from @material-ui/lab's version. https://stackoverflow.com/questions/68356640/how-to-fix-the-error-alpha-is-not-exported-from-material-ui-core-styles-whe So I my package.json file, I changed ` "@material-ui/lab": "^4.0.0-alpha.57",` to ` "@material-ui/lab": "4.0.0-alpha.57",` By simply removing the ^...
@rsubasoglu I had a similar issue. I compared the script provided by matomo and the script on my website and noticed that its not piwik.php and piwik.js that must be...
I dont dont use Owl, but Slick. It has an event firing after a slide changes. Each time the slide changes, I use the `revalidate` method to re-run bLazy. ```...