Skip to content

Commit f102c94

Browse files
authored
Extend Timer to 10 secs (#30)
1 parent 0fcb4dc commit f102c94

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/Eventyay/EventyayEventCheckIn.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const timeoutInstance = ref(null)
2323
const notes = ref('')
2424
2525
function startCountdown() {
26-
countdown.value = 5
26+
countdown.value = 10
2727
timerInstance.value = setInterval(() => {
2828
countdown.value--
2929
if (countdown.value <= 0) {
@@ -89,7 +89,7 @@ function showPopup() {
8989
startCountdown()
9090
timeoutInstance.value = setTimeout(() => {
9191
processEventyayCheckInStore.$reset()
92-
}, 5000)
92+
}, 10000)
9393
}
9494
9595
// Cleanup timers when component is destroyed

0 commit comments

Comments
 (0)