diff --git a/client/my-sites/upgrades/checkout/checkout.jsx b/client/my-sites/upgrades/checkout/checkout.jsx index 8bc8e423a433b..52c092c37145c 100644 --- a/client/my-sites/upgrades/checkout/checkout.jsx +++ b/client/my-sites/upgrades/checkout/checkout.jsx @@ -282,10 +282,12 @@ const Checkout = React.createClass( { } if ( receipt && receipt.receipt_id ) { - const receiptId = receipt.receipt_id; + const receiptId = receipt.receipt_id, + displayPrice = receipt.display_price; this.props.fetchReceiptCompleted( receiptId, { receiptId, + displayPrice, purchases: this.flattenPurchases( this.props.transaction.step.data.purchases ), failedPurchases: this.flattenPurchases( this.props.transaction.step.data.failed_purchases ), } );