From 6c2dc483a20213f1f238e6224b9ecfb87faa2461 Mon Sep 17 00:00:00 2001 From: kolaente Date: Wed, 31 May 2023 16:27:20 +0200 Subject: [PATCH] fix: redundant ) --- src/components/tasks/partials/reminder-period.vue | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/components/tasks/partials/reminder-period.vue b/src/components/tasks/partials/reminder-period.vue index 365183c7c..c0a60d3db 100644 --- a/src/components/tasks/partials/reminder-period.vue +++ b/src/components/tasks/partials/reminder-period.vue @@ -179,9 +179,7 @@ const relativeToOptions = { [REMINDER_PERIOD_RELATIVE_TO_TYPES.ENDDATE]: t('task.attributes.endDate'), } as const -const relativeTo = computed(() => relativeToOptions[periodInput.relativeTo])) - - +const relativeTo = computed(() => relativeToOptions[periodInput.relativeTo]) function formatRelativeTo(relativeTo: IReminderPeriodRelativeTo | null): string | null { switch (relativeTo) {