Skip to content

Commit

Permalink
Merge pull request #695 from yeatmanlab/fix/timeout-to-ten-minutes
Browse files Browse the repository at this point in the history
re introducing timeout to 10 min
  • Loading branch information
Emily-ejag authored Jun 26, 2024
2 parents 10f8532 + e2497ec commit d7d3224
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/HomeSelector.vue
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ watch(isLoading, async (newValue) => {
}
});
const { idle } = useIdle(10 * 1000); // 10 min
const { idle } = useIdle(60 * 10 * 1000); // 10 min
const confirm = useConfirm();
const timeLeft = ref(60);
const i18n = useI18n();
Expand Down

0 comments on commit d7d3224

Please sign in to comment.