From 00d198895e15174b70a8d229974b4baa7d0ed8fc Mon Sep 17 00:00:00 2001 From: Nicolai Ort Date: Thu, 1 May 2025 19:10:42 +0200 Subject: [PATCH] refactor(store): update refresh interval from 2min to 60min --- src/store.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/store.js b/src/store.js index 18eb5dec..b5b5ba73 100644 --- a/src/store.js +++ b/src/store.js @@ -43,8 +43,8 @@ const store = () => { // state.refreshInterval = setInterval(() => { this.refreshAuth(); - // 2min - }, 2 * 60000); + // 60min + }, 60 * 60000); // return state; });