monkey-style-guide-v2 0.0.98 → 0.0.99
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1484,7 +1484,7 @@ class MonkeyEcxAddressService {
|
|
|
1484
1484
|
const neighborhood = getComponent(addressComponents, 'sublocality_level_1');
|
|
1485
1485
|
const city = getComponent(addressComponents, 'administrative_area_level_2');
|
|
1486
1486
|
const state = getComponent(addressComponents, 'administrative_area_level_1');
|
|
1487
|
-
const country = getComponent(addressComponents, 'country');
|
|
1487
|
+
const country = getComponent(addressComponents, 'country', 'shortText');
|
|
1488
1488
|
const zipCode = getComponent(addressComponents, 'postal_code');
|
|
1489
1489
|
return {
|
|
1490
1490
|
formattedAddress: _.formattedAddress,
|