From 83599cee372d32ce4daeed7536bcffaa1b67f425 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Fri, 6 Feb 2026 06:18:48 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- .../cluster/swarm-forms/network-form.tsx | 139 +++++++++--------- 1 file changed, 69 insertions(+), 70 deletions(-) diff --git a/apps/dokploy/components/dashboard/application/advanced/cluster/swarm-forms/network-form.tsx b/apps/dokploy/components/dashboard/application/advanced/cluster/swarm-forms/network-form.tsx index 43a816dfc..f2c640cfe 100644 --- a/apps/dokploy/components/dashboard/application/advanced/cluster/swarm-forms/network-form.tsx +++ b/apps/dokploy/components/dashboard/application/advanced/cluster/swarm-forms/network-form.tsx @@ -104,10 +104,9 @@ export const NetworkForm = ({ id, type }: NetworkFormProps) => { formData.networks ?.filter((network) => network.Target) .map((network) => { - const entries = - (network.DriverOptsEntries ?? []).filter( - (e) => e.key.trim() !== "", - ); + const entries = (network.DriverOptsEntries ?? []).filter( + (e) => e.key.trim() !== "", + ); const driverOpts = entries.length > 0 ? Object.fromEntries( @@ -194,74 +193,74 @@ export const NetworkForm = ({ id, type }: NetworkFormProps) => {