diff --git a/src/App.tsx b/src/App.tsx index cb8f4ba..f2b499a 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -158,7 +158,7 @@ export default function App() { } React.useEffect(() => { - const interval = 60 * 1000; + const interval = 5 * 60 * 1000; const id = setInterval(autoRefresh, interval); return () => clearInterval(id); }, []);