This commit is contained in:
rattatwinko
2025-06-17 12:54:43 +02:00
parent 93b879d69e
commit df97fe59bb
3 changed files with 12 additions and 8 deletions

View File

@@ -31,7 +31,7 @@ export default function Home() {
useEffect(() => {
loadTree();
const interval = setInterval(loadTree, 2000);
const interval = setInterval(loadTree, 500);
return () => clearInterval(interval);
}, []);