diff --git a/frontend/app/components/countdown/index.tsx b/frontend/app/components/countdown/index.tsx index be17bda9..518f385f 100644 --- a/frontend/app/components/countdown/index.tsx +++ b/frontend/app/components/countdown/index.tsx @@ -32,6 +32,9 @@ export default class Countdown extends Component { }); this.start(); } + componentWillUnmount() { + window.clearInterval(this.intervalID); + } shouldComponentUpdate() { return false; }