Merge branch 'main' into rewrite-internals

This commit is contained in:
itsMapleLeaf
2022-10-12 15:03:15 -05:00
6 changed files with 314 additions and 131 deletions

View File

@@ -28,7 +28,7 @@ function Uptime() {
useEffect(() => {
const interval = setInterval(() => {
currentTime(Date.now())
setCurrentTime(Date.now())
}, 3000)
return () => clearInterval(interval)
}, [])