From 61c2b73f08a30bc1f5018b157beb88a260481e90 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Wed, 22 Jul 2026 03:47:06 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- apps/dokploy/components/dashboard/networks/handle-network.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/dokploy/components/dashboard/networks/handle-network.tsx b/apps/dokploy/components/dashboard/networks/handle-network.tsx index 8e1dc5087..c30591088 100644 --- a/apps/dokploy/components/dashboard/networks/handle-network.tsx +++ b/apps/dokploy/components/dashboard/networks/handle-network.tsx @@ -141,7 +141,9 @@ export const HandleNetwork = ({ networkId, children }: HandleNetworkProps) => { const createMutation = api.network.create.useMutation(); const updateMutation = api.network.update.useMutation(); - const isPending = isEdit ? updateMutation.isPending : createMutation.isPending; + const isPending = isEdit + ? updateMutation.isPending + : createMutation.isPending; const form = useForm({ resolver: zodResolver(networkFormSchema),