From fcc7143207d6b33d389015dbf2073645ba3d20f2 Mon Sep 17 00:00:00 2001 From: Fernando Marichal Date: Wed, 6 Apr 2022 14:01:36 -0300 Subject: [PATCH 1/2] Add alreadyActivatedExtensions to persisted business extensions --- .../steps/business-details/flows/selective-bundle/index.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/plugins/woocommerce-admin/client/profile-wizard/steps/business-details/flows/selective-bundle/index.js b/plugins/woocommerce-admin/client/profile-wizard/steps/business-details/flows/selective-bundle/index.js index 10dfadf55f3..71ecdb0bf33 100644 --- a/plugins/woocommerce-admin/client/profile-wizard/steps/business-details/flows/selective-bundle/index.js +++ b/plugins/woocommerce-admin/client/profile-wizard/steps/business-details/flows/selective-bundle/index.js @@ -201,7 +201,10 @@ class BusinessDetails extends Component { const promises = [ this.persistProfileItems( { - business_extensions: businessExtensions, + business_extensions: [ + ...businessExtensions, + ...alreadyActivatedExtensions, + ], } ), ]; From fd1bca35404d486bd4ca421fca0243dd048f3255 Mon Sep 17 00:00:00 2001 From: Fernando Marichal Date: Wed, 6 Apr 2022 14:07:55 -0300 Subject: [PATCH 2/2] Add changelog --- plugins/woocommerce/changelog/fix-hidden_wcpay_task | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 plugins/woocommerce/changelog/fix-hidden_wcpay_task diff --git a/plugins/woocommerce/changelog/fix-hidden_wcpay_task b/plugins/woocommerce/changelog/fix-hidden_wcpay_task new file mode 100644 index 00000000000..cc3627b2ba0 --- /dev/null +++ b/plugins/woocommerce/changelog/fix-hidden_wcpay_task @@ -0,0 +1,4 @@ +Significance: minor +Type: fix + +WCPayments task is not visible after installing the plugin #32506