Skip to content
Snippets Groups Projects

Fixed timer issues

Merged Vilde Min Vikan requested to merge timer-fix into master
2 files
+ 3
3
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 2
2
@@ -130,11 +130,11 @@ export const useTokenStore = defineStore({
await this.refreshToken();
} else this.displayPopUp = true;
}, 1000);
}, 300000);
this.tokenTimer = setTimeout(() => {
this.logout();
}, 120000);
}, 360000);
},
},
Loading