set-payment-method.js 400 B

123456789101112131415
  1. /**
  2. * Copyright © Magento, Inc. All rights reserved.
  3. * See COPYING.txt for license details.
  4. */
  5. define([
  6. 'Magento_Checkout/js/model/quote',
  7. 'Magento_Checkout/js/action/set-payment-information'
  8. ], function (quote, setPaymentInformation) {
  9. 'use strict';
  10. return function (messageContainer) {
  11. return setPaymentInformation(messageContainer, quote.paymentMethod());
  12. };
  13. });