refactor(store): update refresh interval from 2min to 60min

This commit is contained in:
Nicolai Ort 2025-05-01 19:10:42 +02:00
parent b5c079da9a
commit 00d198895e
Signed by: niggl
GPG Key ID: 13AFA55AF62F269F

View File

@ -43,8 +43,8 @@ const store = () => {
// //
state.refreshInterval = setInterval(() => { state.refreshInterval = setInterval(() => {
this.refreshAuth(); this.refreshAuth();
// 2min // 60min
}, 2 * 60000); }, 60 * 60000);
// //
return state; return state;
}); });