🕕 set manual refresh time to 2min
Some checks reported errors
continuous-integration/drone/push Build was killed

This commit is contained in:
Philipp Dormann 2021-01-11 21:08:39 +01:00
parent 63569684a3
commit be629e5c6b

View File

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