this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Reduce interval to 15s

+2 -2
+1 -1
src/components/background-service.jsx
··· 9 9 import usePageVisibility from '../utils/usePageVisibility'; 10 10 11 11 const STREAMING_TIMEOUT = 1000 * 3; // 3 seconds 12 - const POLL_INTERVAL = 1000 * 60; // 1 minute 12 + const POLL_INTERVAL = 15_000; // 15 seconds 13 13 14 14 export default memo(function BackgroundService({ isLoggedIn }) { 15 15 // Notifications service
+1 -1
src/components/timeline.jsx
··· 36 36 boostsCarousel, 37 37 fetchItems = () => {}, 38 38 checkForUpdates = () => {}, 39 - checkForUpdatesInterval = 60_000, // 1 minute 39 + checkForUpdatesInterval = 15_000, // 15 seconds 40 40 headerStart, 41 41 headerEnd, 42 42 timelineStart,