diff --git a/assets/js/base/components/product-list/container.tsx b/assets/js/base/components/product-list/container.tsx index bd3ef0f7698..050085ea5b1 100644 --- a/assets/js/base/components/product-list/container.tsx +++ b/assets/js/base/components/product-list/container.tsx @@ -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;