Update status refreshing to have a better interval and updated sidebar UI

This commit is contained in:
LukeGus
2025-08-31 23:58:00 -05:00
parent 25178928a0
commit d46fafb421
4 changed files with 24 additions and 15 deletions
+1 -1
View File
@@ -58,7 +58,7 @@ export function Host({host}: HostProps): React.ReactElement {
fetchStatus();
intervalId = window.setInterval(fetchStatus, 30000);
intervalId = window.setInterval(fetchStatus, 10000);
return () => {
cancelled = true;