Update payment method option values

This commit is contained in:
inpsyde-maticluznar 2024-11-28 11:15:10 +01:00
parent 9c6ada5a3a
commit 8edbc2205a
No known key found for this signature in database
GPG key ID: D005973F231309F6

View file

@ -54,19 +54,19 @@ export const paymentMethodOptions = [
label: __( 'Venmo', 'woocommerce-paypal-payments' ), label: __( 'Venmo', 'woocommerce-paypal-payments' ),
}, },
{ {
value: 'pay-later', value: 'paylater',
label: __( 'Pay Later', 'woocommerce-paypal-payments' ), label: __( 'Pay Later', 'woocommerce-paypal-payments' ),
}, },
{ {
value: 'debit-or-credit-card', value: 'card',
label: __( 'Debit or Credit Card', 'woocommerce-paypal-payments' ), label: __( 'Debit or Credit Card', 'woocommerce-paypal-payments' ),
}, },
{ {
value: 'google-pay', value: 'googlepay',
label: __( 'Google Pay', 'woocommerce-paypal-payments' ), label: __( 'Google Pay', 'woocommerce-paypal-payments' ),
}, },
{ {
value: 'apple-pay', value: 'applepay',
label: __( 'Apple Pay', 'woocommerce-paypal-payments' ), label: __( 'Apple Pay', 'woocommerce-paypal-payments' ),
}, },
]; ];