From 8fb517152a63b6dc98514df1d747b422a143d746 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Tue, 21 Apr 2026 22:04:36 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- apps/dokploy/pages/api/deploy/github.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/apps/dokploy/pages/api/deploy/github.ts b/apps/dokploy/pages/api/deploy/github.ts index 57f926466..eadc80a21 100644 --- a/apps/dokploy/pages/api/deploy/github.ts +++ b/apps/dokploy/pages/api/deploy/github.ts @@ -53,10 +53,7 @@ export default async function handler( secret: githubResult.githubWebhookSecret, }); - const verified = await webhooks.verify( - JSON.stringify(githubBody), - signature, - ); + const verified = await webhooks.verify(JSON.stringify(githubBody), signature); if (!verified) { res.status(401).json({ message: "Unauthorized" });