Skip to content

Commit febd2bd

Browse files
committed
MAGETWO-55380: Information hint block for Zip/Postal Code should NOT block request for available shipping solution
1 parent f9d339a commit febd2bd

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

app/code/Magento/Checkout/view/frontend/web/js/model/shipping-rates-validator.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -127,9 +127,8 @@ define(
127127
element.on('value', function () {
128128
clearTimeout(self.validateAddressTimeout);
129129
self.validateAddressTimeout = setTimeout(function () {
130-
if (self.postcodeValidation()) {
131-
self.validateFields();
132-
}
130+
self.postcodeValidation();
131+
self.validateFields();
133132
}, delay);
134133
});
135134
observedElements.push(element);

0 commit comments

Comments
 (0)