Skip to content

Commit d8c8574

Browse files
committed
Solved Multiple declaration variables
1 parent 775eab4 commit d8c8574

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/code/Magento/Checkout/view/frontend/web/js/view/shipping-information.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ define([
2828
* @return {String}
2929
*/
3030
getShippingMethodTitle: function () {
31-
var shippingMethod = quote.shippingMethod();
32-
var shippingMethodTitle = '';
31+
var shippingMethod = quote.shippingMethod(),
32+
shippingMethodTitle = '';
3333

3434
if (typeof shippingMethod['method_title'] !== 'undefined') {
3535
shippingMethodTitle = ' - ' + shippingMethod['method_title'];

0 commit comments

Comments
 (0)