Commit 28ad818ffcc for woocommerce

commit 28ad818ffcc80a37b0b0fd390f441e9a61cbe1ff
Author: verofasulo <98944206+verofasulo@users.noreply.github.com>
Date:   Fri May 8 10:58:07 2026 +0200

    Remove the SKU field helper text (#64709)

    Drop the description on the SKU field so the products edit panel no
    longer renders the "Give your product a unique code..." helper line.

diff --git a/packages/js/experimental-products-app/changelog/update-sku-remove-description b/packages/js/experimental-products-app/changelog/update-sku-remove-description
new file mode 100644
index 00000000000..eb6f863f062
--- /dev/null
+++ b/packages/js/experimental-products-app/changelog/update-sku-remove-description
@@ -0,0 +1,4 @@
+Significance: patch
+Type: update
+
+Remove the helper text under the SKU field in the experimental products edit panel.
diff --git a/packages/js/experimental-products-app/src/fields/sku/field.tsx b/packages/js/experimental-products-app/src/fields/sku/field.tsx
index beb588d0f0a..6191a8129d3 100644
--- a/packages/js/experimental-products-app/src/fields/sku/field.tsx
+++ b/packages/js/experimental-products-app/src/fields/sku/field.tsx
@@ -13,10 +13,6 @@ import type { ProductEntityRecord } from '../types';
 const fieldDefinition = {
 	type: 'text',
 	label: __( 'SKU', 'woocommerce' ),
-	description: __(
-		'Give your product a unique code to help identify it in orders and fulfilment.',
-		'woocommerce'
-	),
 	enableSorting: false,
 	filterBy: false,
 } satisfies Partial< Field< ProductEntityRecord > >;