From 5a173b8c2d2f3260004ce407dec4256712039c54 Mon Sep 17 00:00:00 2001 From: TAKAHASHI Shuuji Date: Mon, 13 Jan 2025 14:29:14 +0900 Subject: [PATCH] chore: fix lint error --- components/modal/DurationPicker.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/modal/DurationPicker.vue b/components/modal/DurationPicker.vue index 049b05d9c5..897dcd02f4 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