nick-tw
nick-tw
Having the same issue. Why is this closed? Should I create a new ticket?
Having the same issue.
It seems that the scrollview example in the repo doesn't work either. iOS 17 broke it possibly.
you have `const table = useReactTable({ defaultData, columns, state: { columnPinning, }` try this instead: ` const table = useReactTable({ data:defaultData, columns, state: { columnPinning, }, `
you probably have SSR on the component. make sure it's rendered on the client ```javascript import dynamic from 'next/dynamic' const DynamicQrScanner = dynamic(() => import('@yudiel/react-qr-scanner').then(mod => mod.QrScanner), { ssr: false...
None of these solutions work. I'm using a basic Link to a static page. Works in dev, but broken in production.
I'm in idiot. Fixed it. Any newbies googling the problem, use HTTPS for your backend while developing. Was using HTTP and been getting 404/unexpected errors. UPDATE: It only fixed the...