Relax stats update interval

This commit is contained in:
2025-03-19 16:58:08 +01:00
parent a7b1ba584f
commit 2c75603046

View File

@@ -139,7 +139,7 @@ export function Stats({ api, type }: StatsProps) {
const interval = setInterval(() => {
getStats()
}, 5000)
}, 60000)
return () => {
clearInterval(interval);