From 46358a6e5aabb8987e0ff1914bf353c90993b262 Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Fri, 12 Nov 2021 16:56:32 +0100 Subject: [PATCH] Reduce update frequency --- src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.tsx b/src/App.tsx index 66767c7..9f1761d 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -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() {