You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As per the changelog of immutable v4, KeyedCollection.toArray() returns an array of tuples. In react-immutable-proptypes, toArray is used in the validator of the iterable type checker.
Instead, it should call .valueSeq().toArray() to ensure that it operates on values and not on entries.
The text was updated successfully, but these errors were encountered:
jchorl
added a commit
to jchorl/vaelt
that referenced
this issue
Mar 24, 2018
As per the changelog of immutable v4,
KeyedCollection.toArray()
returns an array of tuples. In react-immutable-proptypes, toArray is used in the validator of the iterable type checker.Instead, it should call
.valueSeq().toArray()
to ensure that it operates on values and not on entries.The text was updated successfully, but these errors were encountered: