From 669164f2f2bf2d1fdbcef03795bcafb116577a72 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Mon, 16 Aug 2021 19:09:20 +1000 Subject: [PATCH] Fix typo in Apple Pay --- app/PaymentDrivers/Stripe/ApplePay.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/PaymentDrivers/Stripe/ApplePay.php b/app/PaymentDrivers/Stripe/ApplePay.php index 7b03510bd766..fcb702570dcb 100644 --- a/app/PaymentDrivers/Stripe/ApplePay.php +++ b/app/PaymentDrivers/Stripe/ApplePay.php @@ -48,7 +48,7 @@ class ApplePay $data['intent'] = \Stripe\PaymentIntent::create([ 'amount' => $data['stripe_amount'], - 'currency' => $this->stripe_driver->client->getCurrencyCode();, + 'currency' => $this->stripe_driver->client->getCurrencyCode(), ], $this->stripe_driver->stripe_connect_auth); $this->stripe_driver->payment_hash->data = array_merge((array) $this->stripe_driver->payment_hash->data, ['stripe_amount' => $data['stripe_amount']]);