diff --git a/changelog/poc-applepay-gpay-wallet-in-card-payment b/changelog/poc-applepay-gpay-wallet-in-card-payment new file mode 100644 index 00000000000..341f0723611 --- /dev/null +++ b/changelog/poc-applepay-gpay-wallet-in-card-payment @@ -0,0 +1,4 @@ +Significance: patch +Type: update + +poc: googlepay/applepay in card element diff --git a/client/checkout/classic/payment-processing.js b/client/checkout/classic/payment-processing.js index cfde44fcb5d..293f5df74b4 100644 --- a/client/checkout/classic/payment-processing.js +++ b/client/checkout/classic/payment-processing.js @@ -280,8 +280,8 @@ async function createStripePaymentElement( const createdStripePaymentElement = elements.create( 'payment', { ...getUpeSettings( paymentMethodType ), wallets: { - applePay: 'never', - googlePay: 'never', + applePay: 'auto', + googlePay: 'auto', }, } ); diff --git a/client/checkout/utils/upe.js b/client/checkout/utils/upe.js index 500314b9f5b..7d69f36fe5e 100644 --- a/client/checkout/utils/upe.js +++ b/client/checkout/utils/upe.js @@ -259,8 +259,8 @@ export const getStripeElementOptions = ( }, }, wallets: { - applePay: 'never', - googlePay: 'never', + applePay: 'auto', + googlePay: 'auto', }, };