From 7d2e8cae5d05bb5c69c44fa693377bdb4d8527cc Mon Sep 17 00:00:00 2001 From: klemek Date: Sun, 2 Aug 2026 08:59:20 +0200 Subject: [PATCH] fix: remove unused function --- resources/ts/lib/recurrence.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/resources/ts/lib/recurrence.ts b/resources/ts/lib/recurrence.ts index cb7860a..d6bafce 100644 --- a/resources/ts/lib/recurrence.ts +++ b/resources/ts/lib/recurrence.ts @@ -171,10 +171,6 @@ export function getCron( return null; } -function dtStartFormat(date: Date): string { - return `${date.getFullYear().toFixed(0)}${(date.getMonth() + 1).toFixed(0).padStart(2, "0")}${date.getDate().toFixed(0).padStart(2, "0")}T000000Z`; -} - export function isOneTime(cron: string | null): boolean { return cron === ONE_TIME_VALUE; }