diff --git a/components/modal/DurationPicker.vue b/components/modal/DurationPicker.vue index 049b05d9..897dcd02 100644 --- a/components/modal/DurationPicker.vue +++ b/components/modal/DurationPicker.vue @@ -14,8 +14,8 @@ watchEffect(() => { const duration = days.value * 24 * 60 * 60 - + hours.value * 60 * 60 - + minutes.value * 60 + + hours.value * 60 * 60 + + minutes.value * 60 if (duration <= 0) { isValid.value = false