Increase Interval between updates.

This commit is contained in:
glax 2024-10-19 21:08:59 +02:00
parent 756998847c
commit db61837457

View File

@ -22,7 +22,7 @@ export default function App(){
const interval = setInterval(() => {
setLastJobListUpdate(new Date());
}, 1000);
}, 5000);
return () => clearInterval(interval);
});