Update mini feed every 30s

This commit is contained in:
2025-01-06 10:02:15 -05:00
parent 8ad566c7f4
commit abe43c03b7

View File

@@ -398,7 +398,7 @@ const MiniEventFeed = ({
useEffect(() => {
fetchEvents();
const interval = setInterval(fetchEvents, 60000);
const interval = setInterval(fetchEvents, 30000);
return () => clearInterval(interval);
}, [fetchEvents]);