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 e814a5b commit 071ba9cCopy full SHA for 071ba9c
app/code/Magento/Checkout/view/frontend/web/js/model/cart/estimate-service.js
@@ -19,7 +19,10 @@ define([
19
quote.shippingAddress.subscribe(function () {
20
var type = quote.shippingAddress().getType();
21
22
- if (quote.isVirtual() || (window.checkoutConfig.activeCarriers && window.checkoutConfig.activeCarriers.length() === 0)) {
+ if (
23
+ quote.isVirtual() ||
24
+ window.checkoutConfig.activeCarriers && window.checkoutConfig.activeCarriers.length() === 0
25
+ ) {
26
// update totals block when estimated address was set
27
totalsProcessors['default'] = totalsDefaultProvider;
28
totalsProcessors[type] ?
0 commit comments