From e682a372d861c473ec2ddfe93decc359683ef64a Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Thu, 3 Sep 2026 21:23:14 +0300 Subject: [PATCH] drive-by: promiseInterval fetches on creation --- src/stores/fetchers/notifications_fetcher.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/stores/fetchers/notifications_fetcher.js b/src/stores/fetchers/notifications_fetcher.js index 5403d59c9..26629f02f 100644 --- a/src/stores/fetchers/notifications_fetcher.js +++ b/src/stores/fetchers/notifications_fetcher.js @@ -118,8 +118,6 @@ const notificationsFetcher = (credentials) => { const startFetching = () => { if (interval.value) throw new Error('Interval already exists!') - fetchAndUpdate() - interval.value = promiseInterval(fetchAndUpdate, 10000) }