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 4b7e7bd commit 55d5c00Copy full SHA for 55d5c00
app/code/Magento/Checkout/view/frontend/web/js/model/cart/estimate-service.js
@@ -45,7 +45,7 @@ define([
45
// check if user data not changed -> load rates from cache
46
if (!cartCache.isChanged('address', quote.shippingAddress()) &&
47
!cartCache.isChanged('cartVersion', customerData.get('cart')()['data_id']) &&
48
- cartCache.get('rates')
+ cartCache.get('rates') && !cartCache.isChanged('totals', quote.getTotals())
49
) {
50
shippingService.setShippingRates(cartCache.get('rates'));
51
quote.setTotals(cartCache.get('totals'));
0 commit comments