Ugh... React...
Too many re-renders. React limits the number of renders to prevent an infinite loop.
Tracking this down is annoying
Ugh... React...
Too many re-renders. React limits the number of renders to prevent an infinite loop.
Tracking this down is annoying
a good ole console log of all the props for the component should help surface what the issue is. if you have a lot of props, you can break the component down into smaller components which helps make it easier to spot or even prevent these issues.