From f5cffca37cabb800330e2791578ed86d9f5d2a20 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Sun, 6 Apr 2025 10:56:32 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes (attempt 2/3) --- apps/dokploy/pages/api/deploy/github.ts | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/apps/dokploy/pages/api/deploy/github.ts b/apps/dokploy/pages/api/deploy/github.ts index ace72148..4757bbab 100644 --- a/apps/dokploy/pages/api/deploy/github.ts +++ b/apps/dokploy/pages/api/deploy/github.ts @@ -188,11 +188,9 @@ export default async function handler( return; } - res - .status(200) - .json({ - message: `Deployed ${totalApps} apps based on tag ${tagName}`, - }); + res.status(200).json({ + message: `Deployed ${totalApps} apps based on tag ${tagName}`, + }); return; } catch (error) { console.error("Error deploying applications on tag:", error);