Commit 89c94928131 for woocommerce

commit 89c94928131fba4f191cc607ebba422956268176
Author: verofasulo <98944206+verofasulo@users.noreply.github.com>
Date:   Wed May 20 14:49:03 2026 +0200

    Drop wrapping quotes around the product name in the delete confirmation modal (#65197)

    * Drop wrapping quotes around product name in delete modal

    * lint code

    ---------

    Co-authored-by: Luigi Teschio <gigitux@gmail.com>

diff --git a/packages/js/experimental-products-app/changelog/tweak-products-app-delete-modal-no-quotes b/packages/js/experimental-products-app/changelog/tweak-products-app-delete-modal-no-quotes
new file mode 100644
index 00000000000..75b8f11ae91
--- /dev/null
+++ b/packages/js/experimental-products-app/changelog/tweak-products-app-delete-modal-no-quotes
@@ -0,0 +1,4 @@
+Significance: patch
+Type: tweak
+
+Drop the wrapping quotes around the product name in the experimental products app delete confirmation modal.
diff --git a/packages/js/experimental-products-app/src/dataviews-actions/actions.tsx b/packages/js/experimental-products-app/src/dataviews-actions/actions.tsx
index eb8531965ad..94a7153ddbc 100644
--- a/packages/js/experimental-products-app/src/dataviews-actions/actions.tsx
+++ b/packages/js/experimental-products-app/src/dataviews-actions/actions.tsx
@@ -550,7 +550,7 @@ export const permanentlyDeleteAction = (): Action< ProductEntityRecord > => ( {
 						? sprintf(
 								/* translators: %s: The product's name. */
 								__(
-									'"%s" will be permanently deleted and can\'t be restored.',
+									"%s will be permanently deleted and can't be restored.",
 									'woocommerce'
 								),
 								items[ 0 ]?.name ?? ''