From e0817bc71ef0af870f90387a2101db78e2d59d6e Mon Sep 17 00:00:00 2001 From: Manuel Maier Date: Mon, 25 Nov 2024 22:10:55 +0100 Subject: [PATCH] fix: disable auto methods --- .../Payment/Stripe/StripePaymentIntentCreationService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/app/Services/Domain/Payment/Stripe/StripePaymentIntentCreationService.php b/backend/app/Services/Domain/Payment/Stripe/StripePaymentIntentCreationService.php index be408ef9..7bab3c62 100644 --- a/backend/app/Services/Domain/Payment/Stripe/StripePaymentIntentCreationService.php +++ b/backend/app/Services/Domain/Payment/Stripe/StripePaymentIntentCreationService.php @@ -74,7 +74,7 @@ public function createPaymentIntent(CreatePaymentIntentRequestDTO $paymentIntent 'account_id' => $paymentIntentDTO->account->getId(), ], 'automatic_payment_methods' => [ - 'enabled' => true, + 'enabled' => false, ], $applicationFee ? ['application_fee_amount' => $applicationFee] : [], ], $this->getStripeAccountData($paymentIntentDTO));