diff --git a/app/Services/PaymentGateway/StripeSCA.php b/app/Services/PaymentGateway/StripeSCA.php index 38bd704b3..2f567e43b 100644 --- a/app/Services/PaymentGateway/StripeSCA.php +++ b/app/Services/PaymentGateway/StripeSCA.php @@ -78,6 +78,7 @@ public function completeTransaction($data) $response = $paymentIntent->send(); if ($response->requiresConfirmation()) { + $intentData['returnUrl'] = $data['returnUrl']; $confirmResponse = $this->gateway->confirm($intentData)->send(); if ($confirmResponse->isSuccessful()) { $response = $this->gateway->capture($intentData)->send();