We were struggling with using ReactList with strict mode in our application.
The problem seems to be that the listeners on the scroll parents are removed but this.scrollParent remains set.
This means that on the second mount strict mode does, updateScrollParent will not add the required listeners.
Setting scrollParent to null on unmount resolves this problem.
We were struggling with using ReactList with strict mode in our application.
The problem seems to be that the listeners on the scroll parents are removed but this.scrollParent remains set. This means that on the second mount strict mode does, updateScrollParent will not add the required listeners.
Setting scrollParent to null on unmount resolves this problem.