Skip to content

Commit 15b2011

Browse files
ENGCOM-3564: [Forwardport]Fixed - Default tax region/state appears in customer & order data #19387
- Merge Pull Request #19387 from ssp58bleuciel/magento2:forward-port-pull-18857 - Merged commits: 1. 350b56c 2. 2854a1e
2 parents 7755eef + 2854a1e commit 15b2011

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

app/code/Magento/Checkout/view/frontend/web/js/model/new-customer-address.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ define([
2222

2323
if (addressData.region && addressData.region['region_id']) {
2424
regionId = addressData.region['region_id'];
25+
} else if (!addressData['region_id']) {
26+
regionId = undefined;
2527
} else if (
2628
/* eslint-disable */
2729
addressData['country_id'] && addressData['country_id'] == window.checkoutConfig.defaultCountryId ||

0 commit comments

Comments
 (0)