From 354275d35f3a0783bc2a55737d52641e92048e89 Mon Sep 17 00:00:00 2001 From: Hector Lovo Date: Wed, 17 Jul 2024 21:41:44 -0400 Subject: [PATCH 1/2] Ensure Stripe creates a payment method in the merchant Stripe account --- .../blocks/components/express-checkout-container.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/express-checkout/blocks/components/express-checkout-container.js b/client/express-checkout/blocks/components/express-checkout-container.js index 5cb73a0f005..c0213cb4c90 100644 --- a/client/express-checkout/blocks/components/express-checkout-container.js +++ b/client/express-checkout/blocks/components/express-checkout-container.js @@ -14,7 +14,7 @@ const ExpressCheckoutContainer = ( props ) => { const { api, billing } = props; const stripePromise = useMemo( () => { - return api.loadStripe(); + return api.loadStripe( true ); }, [ api ] ); const options = { From 163aab3b9f6fa050894e8b99147b7057616e229d Mon Sep 17 00:00:00 2001 From: Hector Lovo Date: Wed, 17 Jul 2024 21:41:58 -0400 Subject: [PATCH 2/2] Add changelog --- changelog/fix-9113-ece-google-pay-fails-with-woopay-enabled | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 changelog/fix-9113-ece-google-pay-fails-with-woopay-enabled diff --git a/changelog/fix-9113-ece-google-pay-fails-with-woopay-enabled b/changelog/fix-9113-ece-google-pay-fails-with-woopay-enabled new file mode 100644 index 00000000000..23a08bde401 --- /dev/null +++ b/changelog/fix-9113-ece-google-pay-fails-with-woopay-enabled @@ -0,0 +1,4 @@ +Significance: patch +Type: fix + +Make Google Pay ECE compatible with WooPay.