Auto refresh: fix usage of useEffect.

master
Tom Hacohen 2020-09-30 16:01:14 +03:00
parent 0a84405619
commit 99f39f4453
1 changed files with 1 additions and 1 deletions

View File

@ -161,7 +161,7 @@ export default function App() {
const interval = 60 * 1000;
const id = setInterval(autoRefresh, interval);
return () => clearInterval(id);
});
}, []);
function toggleDrawer() {
setDrawerOpen(!drawerOpen);