GrahamQuan
GrahamQuan
I am doing table resize, copy the code from example `https://tanstack.com/table/latest/docs/framework/react/examples/column-sizing`, resize not working, turns out Its react-complier issue, add `use no memo` for the componnet to fix it temporarily....
```tsx export default function VirtualList() { // opt out of react compiler 'use no memo'; } ``` this works for me
this issue happened to me couple days ago, we can't use cacheComponents (PPR) due to this, back to `ISR` for this moment
it happened to me, i was trying to use `open()` and `inputRef` return from `useDropzone()` i fix it by using my own `fieldInputRef` ```jsx const fileInputRef = useRef(null); const onClear...
> I finally tracked down the source of this issue (aside from the multiple `x-forwarded-proto` issue that was resolved): > > [next.js/packages/next/src/server/app-render/action-handler.ts](https://github.com/vercel/next.js/blob/3a39a205f7e8352b4c47b78a6f893eb7b67bdd28/packages/next/src/server/app-render/action-handler.ts#L479-L482) > > Lines 479 to 482 in [3a39a20](/vercel/next.js/commit/3a39a205f7e8352b4c47b78a6f893eb7b67bdd28)...