diff --git a/apps/dokploy/components/dashboard/application/schedules/handle-schedules.tsx b/apps/dokploy/components/dashboard/application/schedules/handle-schedules.tsx index f99eee86b..c133ae4d9 100644 --- a/apps/dokploy/components/dashboard/application/schedules/handle-schedules.tsx +++ b/apps/dokploy/components/dashboard/application/schedules/handle-schedules.tsx @@ -14,8 +14,6 @@ import { zodResolver } from "@hookform/resolvers/zod"; import { useForm } from "react-hook-form"; import { z } from "zod"; import { - Clock, - Terminal, Info, PlusCircle, PenBoxIcon, @@ -49,7 +47,8 @@ import type { CacheType } from "../../compose/domains/add-domain"; import { AlertBlock } from "@/components/shared/alert-block"; import { CodeEditor } from "@/components/shared/code-editor"; import { cn } from "@/lib/utils"; -const commonCronExpressions = [ + +export const commonCronExpressions = [ { label: "Every minute", value: "* * * * *" }, { label: "Every hour", value: "0 * * * *" }, { label: "Every day at midnight", value: "0 0 * * *" }, @@ -361,7 +360,6 @@ export const HandleSchedules = ({ id, scheduleId, scheduleType }: Props) => { render={({ field }) => ( - Task Name @@ -381,7 +379,6 @@ export const HandleSchedules = ({ id, scheduleId, scheduleType }: Props) => { render={({ field }) => ( - Schedule @@ -444,7 +441,6 @@ export const HandleSchedules = ({ id, scheduleId, scheduleType }: Props) => { render={({ field }) => ( - Shell Type