Reduce update frequency

This commit is contained in:
Gabriel Augendre 2021-11-12 16:56:32 +01:00
parent ba281ce35c
commit 46358a6e5a

View file

@ -27,7 +27,7 @@ class App extends React.Component<{}, IAppState> {
componentDidMount() {
this.refresh();
this.timerId = setInterval(this.refresh.bind(this), 5000);
this.timerId = setInterval(this.refresh.bind(this), 60000);
}
componentWillUnmount() {