Browse Source

fix token timeout from 1 min to 60 min

master
Alex Cheung 1 year ago
parent
commit
bfffcaf387
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/components/AutoLogoutProvider.js

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

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


Loading…
Cancel
Save