UI: Increase the map update frequency by 5x

This commit is contained in:
Mike Salvatore 2022-05-23 09:19:44 -04:00
parent ccc29e448c
commit 07cfc34a8e
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ class MapPageComponent extends AuthComponent {
componentDidMount() { componentDidMount() {
this.getNodeStateListFromServer(); this.getNodeStateListFromServer();
this.updateMapFromServer(); this.updateMapFromServer();
this.interval = setInterval(this.updateMapFromServer, 5000); this.interval = setInterval(this.updateMapFromServer, 1000);
} }
componentWillUnmount() { componentWillUnmount() {