Adam Tuttle
Adam Tuttle
I would _very much_ like to have retina sparkline charts! I tried retrofitting this into my minified version and the displayed pie charts look great... but the hover effect is...
Also worth noting I also tried a slightly lower tech solution: I set my size to 2x what I want and added `style="zoom: 50%"` to the container. This made it...
I saw that on Twitter you asked if I'm wrapping with Next's Dynamic util. I am not, but I am using React Suspense. Here's the current code: ```js ``` This...
Ah, my mistake, I am using dynamic from Next: ```js const QrReader = dynamic(() => import('@blackbox-vision/react-qr-reader').then((mod) => mod.QrReader), { ssr: false }); ```
Is it possible that the NextJS production build is compressing the `error.name` property? My handleScan function looks like this: ```js const handleScan = async (data, err) => { if (err)...
@charleskoehl @pawelkrystkiewicz I've basically taken the approach of ignoring all errors reported in my handleScan function. Unfortunate, because this seems like a bad thing to do (/cc @JonatanSalas ) but...