diff --git a/plugins/woocommerce-blocks/assets/js/blocks/cart-checkout/cart/index.js b/plugins/woocommerce-blocks/assets/js/blocks/cart-checkout/cart/index.js index dc925d0cd74..cee53986cb4 100644 --- a/plugins/woocommerce-blocks/assets/js/blocks/cart-checkout/cart/index.js +++ b/plugins/woocommerce-blocks/assets/js/blocks/cart-checkout/cart/index.js @@ -32,7 +32,7 @@ const settings = { keywords: [ __( 'WooCommerce', 'woo-gutenberg-products-block' ) ], description: __( 'Shopping cart.', 'woo-gutenberg-products-block' ), supports: { - align: [ 'wide', 'full' ], + align: [ 'wide' ], html: false, multiple: false, __experimentalExposeControlsToChildren: true, diff --git a/plugins/woocommerce-blocks/assets/js/blocks/cart-checkout/cart/inner-blocks/empty-cart-block/block.json b/plugins/woocommerce-blocks/assets/js/blocks/cart-checkout/cart/inner-blocks/empty-cart-block/block.json index 001b468af3d..494f627d156 100644 --- a/plugins/woocommerce-blocks/assets/js/blocks/cart-checkout/cart/inner-blocks/empty-cart-block/block.json +++ b/plugins/woocommerce-blocks/assets/js/blocks/cart-checkout/cart/inner-blocks/empty-cart-block/block.json @@ -5,7 +5,7 @@ "description": "Contains blocks that are displayed when the cart is empty.", "category": "woocommerce", "supports": { - "align": [ "wide", "full" ], + "align": [ "wide" ], "html": false, "multiple": false, "reusable": false, diff --git a/plugins/woocommerce-blocks/assets/js/blocks/cart-checkout/cart/inner-blocks/filled-cart-block/block.json b/plugins/woocommerce-blocks/assets/js/blocks/cart-checkout/cart/inner-blocks/filled-cart-block/block.json index 3165c8215b5..80abe01d7aa 100644 --- a/plugins/woocommerce-blocks/assets/js/blocks/cart-checkout/cart/inner-blocks/filled-cart-block/block.json +++ b/plugins/woocommerce-blocks/assets/js/blocks/cart-checkout/cart/inner-blocks/filled-cart-block/block.json @@ -5,7 +5,7 @@ "description": "Contains blocks that are displayed when the cart contains products.", "category": "woocommerce", "supports": { - "align": [ "wide", "full" ], + "align": [ "wide" ], "html": false, "multiple": false, "reusable": false, diff --git a/plugins/woocommerce-blocks/assets/js/blocks/cart-checkout/checkout/index.tsx b/plugins/woocommerce-blocks/assets/js/blocks/cart-checkout/checkout/index.tsx index 725c5bed004..b44d1b16231 100644 --- a/plugins/woocommerce-blocks/assets/js/blocks/cart-checkout/checkout/index.tsx +++ b/plugins/woocommerce-blocks/assets/js/blocks/cart-checkout/checkout/index.tsx @@ -31,7 +31,7 @@ const settings = { 'woo-gutenberg-products-block' ), supports: { - align: [ 'wide', 'full' ], + align: [ 'wide' ], html: false, multiple: false, },