Using Link (NextJS) make React-Dnd can't drag&drop

132 Views Asked by At

I use react-dnd to drag and drop rows in a table (tanstack-table). I use Link to navigate to that page, but when I navigate to it, I cannot drag&drop. I checked, react-dnd uses redux and when using Link tag redux-devtool doesn't work. When using a tag it works but I don't want it.

 <DndProvider backend={HTML5Backend} debugMode={true}>
            <SessionProvider session={session}>
                <QueryClientProvider client={queryClient}>
                    <LoadingProvider>
                        <MyContextProvider>
                            {getLayout(<Component {...pageProps} />)}
                        </MyContextProvider>
                    </LoadingProvider>
                </QueryClientProvider>
            </SessionProvider>
        </DndProvider>

Something affected react-dnd's redux store and made it impossible to drag and drop

0

There are 0 best solutions below