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
It looks like like this polyfill is using a deprecated method ".getDOMNode()" here. This produces a deprecation warning in the console when used with [email protected].
Looks like all it needs is the presence of react-dom and
I'm not quite sure that there is a good way to satisfy both sides of the breaking change - 0.13 uses this.getDOMNode() and 0.14 prefers ReactDOM.findDOMNode(this).
I believe the point of the warning is to push us to change how we access nodes, as this.getDOMNode is probably not going to work in 0.15.
I'm not quite sure that there is a good way to satisfy both sides of the breaking change - 0.13 uses this.getDOMNode() and 0.14 prefers ReactDOM.findDOMNode(this).
I believe the point of the warning is to push us to change how we access nodes, as this.getDOMNode is probably not going to work in 0.15.
It looks like like this polyfill is using a deprecated method "
.getDOMNode()
" here. This produces a deprecation warning in the console when used with[email protected]
.Looks like all it needs is the presence of react-dom and
Happy to help out if you'd like a PR.
The text was updated successfully, but these errors were encountered: