refactor(store): update refresh interval from 2min to 60min
This commit is contained in:
parent
b5c079da9a
commit
00d198895e
@ -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;
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user