diff --git a/js/components/MainWindow/Marquee.js b/js/components/MainWindow/Marquee.js index 8f176b43..a8a4e0f3 100644 --- a/js/components/MainWindow/Marquee.js +++ b/js/components/MainWindow/Marquee.js @@ -76,15 +76,11 @@ class Marquee extends React.Component { } componentDidMount() { - const step = () => { - this.stepHandle = setTimeout(() => { - if (this.state.stepping) { - this.props.dispatch({ type: STEP_MARQUEE }); - } - step(); - }, 220); - }; - step(); + this.stepHandle = setInterval(() => { + if (this.state.stepping) { + this.props.dispatch({ type: STEP_MARQUEE }); + } + }, 220); } componentWillUnmount() {