Remove added setState method in componentDidMount

revert-70ac1926
Farheen99 4 years ago
parent fdaf8bd7ef
commit 01e5e30173

@ -87,15 +87,13 @@ class LifeCycle extends React.Component {
const lifecycleSteps = Object.keys(lifeCycleConfig).map(config => {
return lifeCycleConfig[config];
});
let isPublished = this.checkReleaseLifeCycleStatus();
this.setState({
current: lifeCycleConfig[this.props.currentStatus].step,
lifecycleSteps,
isPublished,
});
this.getLifeCycleHistory();
this.setState({
isPublished: this.checkReleaseLifeCycleStatus(),
});
}
componentDidUpdate(prevProps, prevState, snapshot) {

Loading…
Cancel
Save