mirror of
https://github.com/gosticks/react-table.git
synced 2026-07-24 19:20:19 +00:00
Related to: https://github.com/tannerlinsley/react-table/issues/1657 Discussion: https://spectrum.chat/react-table/general/v7-maximum-update-depth-exceeded-usegroupby-useexpanded-with-usepagination~2c25e2b8-7a61-4c32-84b3-87db458701c2 Thanks to @iamjon for identifying usePagination was the culprit. I then checked the last changes made to it, and noticed it was previously listening to data and now it listened to rows (which I believe is a new reference on each render), causing infinite loop on one of its effects. I tested this change on my project and everything seems ok now.