From 66190434a7887f7cd6e3153582480a26cfbef38f Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Thu, 19 Feb 2026 20:51:00 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- apps/dokploy/server/utils/stripe.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/dokploy/server/utils/stripe.ts b/apps/dokploy/server/utils/stripe.ts index 3a05dd640..23e9a6b8f 100644 --- a/apps/dokploy/server/utils/stripe.ts +++ b/apps/dokploy/server/utils/stripe.ts @@ -61,7 +61,8 @@ export const getStripeItems = ( : HOBBY_PRICE_MONTHLY_ID || BASE_PRICE_MONTHLY_ID; if (basePrice) items.push({ price: basePrice, quantity: 1 }); const extraQty = Math.max(0, serverQuantity - 3); - if (extraQty > 0) items.push({ price: extraServerPrice, quantity: extraQty }); + if (extraQty > 0) + items.push({ price: extraServerPrice, quantity: extraQty }); return items; }