We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0fcb4dc commit f102c94Copy full SHA for f102c94
1 file changed
src/components/Eventyay/EventyayEventCheckIn.vue
@@ -23,7 +23,7 @@ const timeoutInstance = ref(null)
23
const notes = ref('')
24
25
function startCountdown() {
26
- countdown.value = 5
+ countdown.value = 10
27
timerInstance.value = setInterval(() => {
28
countdown.value--
29
if (countdown.value <= 0) {
@@ -89,7 +89,7 @@ function showPopup() {
89
startCountdown()
90
timeoutInstance.value = setTimeout(() => {
91
processEventyayCheckInStore.$reset()
92
- }, 5000)
+ }, 10000)
93
}
94
95
// Cleanup timers when component is destroyed
0 commit comments