We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3d39c90 + d8534d2 commit 9e30746Copy full SHA for 9e30746
app/code/Magento/Braintree/view/frontend/web/js/view/payment/method-renderer/paypal.js
@@ -334,7 +334,7 @@ define([
334
}
335
336
return {
337
- line1: (_.isUndefined(address.street) || _.isUndefined(address.street[0]) ? '' : address.street[0],
+ line1: _.isUndefined(address.street) || _.isUndefined(address.street[0]) ? '' : address.street[0],
338
city: address.city,
339
state: address.regionCode,
340
postalCode: address.postcode,
0 commit comments