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; }