diff --git a/apps/dokploy/components/dashboard/application/advanced/cluster/swarm-forms/health-check-form.tsx b/apps/dokploy/components/dashboard/application/advanced/cluster/swarm-forms/health-check-form.tsx index 54ec0b242..1e0d032f0 100644 --- a/apps/dokploy/components/dashboard/application/advanced/cluster/swarm-forms/health-check-form.tsx +++ b/apps/dokploy/components/dashboard/application/advanced/cluster/swarm-forms/health-check-form.tsx @@ -129,7 +129,7 @@ export const HealthCheckForm = ({ id, type }: HealthCheckFormProps) => { const removeTestCommand = (index: number) => { form.setValue( "Test", - testCommands.filter((_, i) => i !== index), + testCommands.filter((_: string, i: number) => i !== index), ); }; @@ -143,7 +143,7 @@ export const HealthCheckForm = ({ id, type }: HealthCheckFormProps) => { http://localhost:3000/health"])
- {testCommands.map((cmd, index) => ( + {testCommands.map((cmd: string, index: number) => (