this repo has no description
0
fork

Configure Feed

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

Slow down polling if scrolled down

+3 -1
+3 -1
src/components/timeline.jsx
··· 282 282 // checkForUpdates interval 283 283 useInterval( 284 284 loadOrCheckUpdates, 285 - visible && !showNew ? checkForUpdatesInterval : null, 285 + visible && !showNew 286 + ? checkForUpdatesInterval * (nearReachStart ? 1 : 2) 287 + : null, 286 288 ); 287 289 288 290 const hiddenUI = scrollDirection === 'end' && !nearReachStart;