respect SHIPPING_ENABLED in Cart and Checkout blocks (https://github.com/woocommerce/woocommerce-blocks/pull/2202)

This commit is contained in:
Seghir Nadir 2020-04-14 07:01:59 +01:00 committed by GitHub
parent 70f8b48165
commit 32b80c40bb
1 changed files with 2 additions and 1 deletions

View File

@ -5,6 +5,7 @@ import { __ } from '@wordpress/i18n';
import {
SHIPPING_METHODS_EXIST,
WC_BLOCKS_ASSET_URL,
SHIPPING_ENABLED,
} from '@woocommerce/block-settings';
/**
@ -164,7 +165,7 @@ export const previewCart = {
items_count: 3,
items_weight: 0,
needs_payment: true,
needs_shipping: true,
needs_shipping: SHIPPING_ENABLED,
totals: {
currency_code: 'USD',
currency_symbol: '$',