diff --git a/plugins/woocommerce-blocks/assets/js/editor-components/edit-product-link/index.tsx b/plugins/woocommerce-blocks/assets/js/editor-components/edit-product-link/index.tsx index 2397962324f..eaf8acf5540 100644 --- a/plugins/woocommerce-blocks/assets/js/editor-components/edit-product-link/index.tsx +++ b/plugins/woocommerce-blocks/assets/js/editor-components/edit-product-link/index.tsx @@ -22,7 +22,7 @@ const EditProductLink = ( props: EditProductLinkProps ): JSX.Element | null => { const product = productDataContext.product || {}; const productId = product.id || props.productId || 0; - if ( ! productId ) { + if ( ! productId || productId === 1 ) { return null; }