removed proptypes from product-list container (https://github.com/woocommerce/woocommerce-blocks/pull/9616)
Co-authored-by: Niels Lange <info@nielslange.de>
This commit is contained in:
parent
fdf81f6088
commit
edab9c00ab
|
@ -2,7 +2,6 @@
|
|||
* External dependencies
|
||||
*/
|
||||
import { useState, useEffect } from '@wordpress/element';
|
||||
import PropTypes from 'prop-types';
|
||||
import type { HTMLElementEvent } from '@woocommerce/types';
|
||||
|
||||
/**
|
||||
|
@ -40,9 +39,4 @@ const ProductListContainer = ( {
|
|||
);
|
||||
};
|
||||
|
||||
ProductListContainer.propTypes = {
|
||||
attributes: PropTypes.object.isRequired,
|
||||
hideOutOfStockItems: PropTypes.bool,
|
||||
};
|
||||
|
||||
export default ProductListContainer;
|
||||
|
|
Loading…
Reference in New Issue