This warning is React-related and usually occurs when components are passed to a React context or provider, and React detects changes to children in the context when they remain the same objects.
To avoid this problem, make sure you don't modify context or provider objects directly, as React expects objects to remain unchanged if their references haven't changed.
If you are using a React Context or Provider, make sure that the values you provide remain unchanged or, if they change, create new objects or values to avoid this error.