We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3ea749 commit 999cce1Copy full SHA for 999cce1
app/code/Magento/Tax/view/frontend/web/js/view/checkout/summary/tax.js
@@ -21,7 +21,9 @@ define([
21
isZeroTaxDisplayed = window.checkoutConfig.isZeroTaxDisplayed;
22
23
quote.shippingAddress.subscribe(function () {
24
- totalsDefaultProcessor.estimateTotals(quote.shippingAddress());
+ if (quote.shippingAddress().isEditable()) {
25
+ totalsDefaultProcessor.estimateTotals(quote.shippingAddress());
26
+ }
27
});
28
29
return Component.extend({
0 commit comments