davidkpiano / react-redux-form

Create forms easily in React with Redux.
https://davidkpiano.github.io/react-redux-form
MIT License
2.07k stars 251 forks source link

Warning: componentWillReceiveProps has been renamed #1222

Closed Utkarsh-LiquidStone closed 4 years ago

Utkarsh-LiquidStone commented 4 years ago

When I implemented the Control, LocalForm, Errors in my react application. I'm getting the following warning in console:

Warning: componentWillReceiveProps has been renamed, and is not recommended for use. See https://fb.me/react-unsafe-component-lifecycles for details.

Please update the following components: Control, Form

Can you tell me how to resolve this warning? Please update.

rikkit commented 4 years ago

That warning is coming from React due to usage of componentWillReceiveProps in this library - React are planning to rename this method in v17. This library will need to be updated and re-released with a fix for this warning to work with React 17 - but until that is released, you can ignore this. More info here: https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html

Utkarsh-LiquidStone commented 4 years ago

Thanks, @rikkit for the information.