From 6e3494488a9c840da3c3f21f86ca52ba31b4cdc2 Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Mon, 6 Nov 2023 09:44:46 +0800 Subject: [PATCH] Reduce interval to 15s --- src/components/background-service.jsx | 2 +- src/components/timeline.jsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/background-service.jsx b/src/components/background-service.jsx index 8d5c1aa5..6c4b63d1 100644 --- a/src/components/background-service.jsx +++ b/src/components/background-service.jsx @@ -9,7 +9,7 @@ import useInterval from '../utils/useInterval'; import usePageVisibility from '../utils/usePageVisibility'; const STREAMING_TIMEOUT = 1000 * 3; // 3 seconds -const POLL_INTERVAL = 1000 * 60; // 1 minute +const POLL_INTERVAL = 15_000; // 15 seconds export default memo(function BackgroundService({ isLoggedIn }) { // Notifications service diff --git a/src/components/timeline.jsx b/src/components/timeline.jsx index df524c13..6aab086b 100644 --- a/src/components/timeline.jsx +++ b/src/components/timeline.jsx @@ -36,7 +36,7 @@ function Timeline({ boostsCarousel, fetchItems = () => {}, checkForUpdates = () => {}, - checkForUpdatesInterval = 60_000, // 1 minute + checkForUpdatesInterval = 15_000, // 15 seconds headerStart, headerEnd, timelineStart,