'Maximum update depth exceeded' error with Sortable
See original GitHub issueHere is an example: https://codesandbox.io/s/dnd-kit-issue-eq952
https://user-images.githubusercontent.com/7955306/139406591-7a542b60-c578-485f-9058-8abe8f376e5b.mov
The problem is because of items filtering. But if we remove it we get empty space when move item out of the container
const filteredItems = activeId && isOutOfContainer ? items.filter((item) => item !== activeId) : items;
https://user-images.githubusercontent.com/7955306/139406934-653e5071-a45e-42fd-9d45-5c52222f8017.mov
Issue Analytics
- State:
- Created 2 years ago
- Reactions:5
- Comments:16 (1 by maintainers)
Top Results From Across the Web
Why I get error: "Maximum update depth exceeded" when ...
Calling sortBy is calling setState which is triggering a re-render (calling render ) which is calling sortBy , etc. It's an infinite loop....
Read more >Error: Maximum update depth exceeded. in react-Reactjs
Coding example for the question Error: Maximum update depth exceeded. in react-Reactjs.
Read more >Invariant Violation: maximum update depth exceeded react js
Invariant Violation: Maximum update depth exceeded. This can happen when a component repeatedly calls setState inside componentWillUpdate or componentDidUpdate.
Read more >material-table/Lobby - Gitter
I would like to overide the sorting in material table is there a way? Naoyuki Tai ... Uncaught Error: Maximum update depth exceeded....
Read more >ReactJS: Maximum update depth exceeded error - SyntaxFix
Maximum update depth exceeded. This can happen when a component repeatedly calls setState inside componentWillUpdate or componentDidUpdate. React limits the ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Getting the same issue; same error with <Accessibility>.
@clauderic I checked the forked sandbox aswell and was able to replicate it. Imo this should be opened again.
Error-Gif