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

This commit is contained in:
2025-05-01 19:10:42 +02:00
parent b5c079da9a
commit 00d198895e

View File

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