You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Battling this same issue myself! I believe the bug lies in Model\Action\Validator.php , line 79, the last condition in the if statement should be flipped:
if (!$isAddressValidationOn && !$isAddressNormalizationOn && !$isAddressActionable) {
return true;
}
should be changed to:
if (!$isAddressValidationOn && !$isAddressNormalizationOn && $isAddressActionable) {
return true;
}
In my testing this does seem to solve the issue while not breaking anything else.
We are using avatax module.
Address Validation setting is disabled. when we check in avatax account it is showing there Address validation api is called several time.
Why it is calling Address validation API?
The text was updated successfully, but these errors were encountered: