diff --git a/src/components/timeline.jsx b/src/components/timeline.jsx index 830dcae0..ca2b1d59 100644 --- a/src/components/timeline.jsx +++ b/src/components/timeline.jsx @@ -282,7 +282,9 @@ function Timeline({ // checkForUpdates interval useInterval( loadOrCheckUpdates, - visible && !showNew ? checkForUpdatesInterval : null, + visible && !showNew + ? checkForUpdatesInterval * (nearReachStart ? 1 : 2) + : null, ); const hiddenUI = scrollDirection === 'end' && !nearReachStart;