Sfoglia il codice sorgente

fix token timeout from 1 min to 60 min

master
Alex Cheung 1 anno fa
parent
commit
bfffcaf387
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      src/components/AutoLogoutProvider.js

+ 1
- 1
src/components/AutoLogoutProvider.js Vedi File

@@ -58,7 +58,7 @@ const AutoLogoutProvider = ({ children }) => {
if(isGLDLoggedIn()){
setLogoutInterval(240);
}else{
setLogoutInterval(1);
setLogoutInterval(60);
}
// axios.get(`${apiPath}${GET_IDLE_LOGOUT_TIME}`,
// )


Caricamento…
Annulla
Salva