Skip to content

Commit 9a249e9

Browse files
author
Timon de Groot
committed
Fix js static error
1 parent 4fd6a03 commit 9a249e9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/code/Magento/Checkout/view/frontend/web/js/model/cart/estimate-service.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ define([
1919
/**
2020
* Estimate totals for shipping address and update shipping rates.
2121
*/
22-
estimateTotalsAndUpdateRates = function() {
22+
estimateTotalsAndUpdateRates = function () {
2323
var type = quote.shippingAddress().getType();
2424

2525
if (
@@ -58,14 +58,14 @@ define([
5858
/**
5959
* Estimate totals for shipping address.
6060
*/
61-
estimateTotalsShipping = function() {
61+
estimateTotalsShipping = function () {
6262
totalsDefaultProvider.estimateTotals(quote.shippingAddress());
6363
},
6464

6565
/**
6666
* Estimate totals for billing address.
6767
*/
68-
estimateTotalsBilling = function() {
68+
estimateTotalsBilling = function () {
6969
var type = quote.billingAddress().getType();
7070

7171
if (quote.isVirtual()) {

0 commit comments

Comments
 (0)