Open noah79 opened 3 years ago
Offending code:
updateValue = (anima) => { this.props.update(anima) const {animatedValue} = this.target this.setState({animatedValue}) }
Should be:
updateValue = (anima) => { this.props.update(anima) const {animatedValue} = this.target if (animatedValue !== this.state.animatedValue) { this.setState({animatedValue}) } }
Offending code:
Should be: