| 6 | import type { CronJob } from "./CronJobCard"; |
| 7 | |
| 8 | interface CronJobModalProps { |
| 9 | isOpen: boolean; |
| 10 | onClose: () => void; |
| 11 | onSave: (job: Partial<CronJob>) => void; |
| 12 | editingJob?: CronJob | null; |
| 13 | } |
| 14 | |
| 15 | const DEFAULT_TIMEZONE = Intl.DateTimeFormat().resolvedOptions().timeZone || "UTC"; |
| 16 | const TIMEZONES = Array.from(new Set([ |
nothing calls this directly
no outgoing calls
no test coverage detected