diff --git a/src/App.js b/src/App.js index 9243527..2ba26f9 100644 --- a/src/App.js +++ b/src/App.js @@ -64,11 +64,13 @@ class App extends Component { scaleLean = scaleLinear().domain([0, this.svg.width/2, this.svg.width]) .range([.5, 0, -.5]); - this.setState({ - heightFactor: scaleFactor(y), - lean: scaleLean(x) - }); - this.running = false; + this.setState( + { + heightFactor: scaleFactor(y), + lean: scaleLean(x) + }, + () => this.running = false + ); } render() {