monkey-style-guide-v2 0.0.46 → 0.0.47
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.
|
@@ -1482,7 +1482,7 @@ class MonkeyEcxAddressService {
|
|
|
1482
1482
|
const addressNumber = getComponent(addressComponents, 'street_number');
|
|
1483
1483
|
const neighborhood = getComponent(addressComponents, 'sublocality_level_1');
|
|
1484
1484
|
const city = getComponent(addressComponents, 'administrative_area_level_2');
|
|
1485
|
-
const state = getComponent(addressComponents, 'administrative_area_level_1'
|
|
1485
|
+
const state = getComponent(addressComponents, 'administrative_area_level_1');
|
|
1486
1486
|
const country = getComponent(addressComponents, 'country');
|
|
1487
1487
|
const zipCode = getComponent(addressComponents, 'postal_code');
|
|
1488
1488
|
return {
|