Revert to UNSAFE_componentWillMount where componentDidMount will not work

This commit is contained in:
Travis Ralston 2020-04-01 11:05:49 -06:00
parent 3f99332f4b
commit 8f04746e4e
7 changed files with 14 additions and 7 deletions

View file

@ -55,7 +55,8 @@ export default createReactClass({
askReason: false,
}),
componentDidMount: function() {
// TODO: [REACT-WARNING] Move this to constructor
UNSAFE_componentWillMount: function() {
this._reasonField = null;
},