Fix linting errors

This commit is contained in:
Lei Nelissen
2022-01-02 19:29:20 +01:00
parent cc0dfc2528
commit ebd46970d9
9 changed files with 20 additions and 11 deletions

View File

@@ -33,7 +33,7 @@ export default class ProgressBar extends Component<{}, State> {
duration: 0,
};
timer: NodeJS.Timeout | null = null;
timer: number | null = null;
componentDidMount() {
this.timer = setInterval(this.updateProgress, 500);