diff --git a/client/express-checkout/transformers/wc-to-stripe.js b/client/express-checkout/transformers/wc-to-stripe.js index 08d6ec97c..8b5373709 100644 --- a/client/express-checkout/transformers/wc-to-stripe.js +++ b/client/express-checkout/transformers/wc-to-stripe.js @@ -85,8 +85,7 @@ export const transformCartDataForDisplayItems = ( rawCartData ) => { ); if ( discountAmount ) { displayItems.push( { - key: 'total_discount', - amount: transformPrice( discountAmount, cartData.totals ), + amount: -transformPrice( discountAmount, cartData.totals ), name: __( 'Discount', 'woocommerce-gateway-stripe' ), } ); }