Onboarding: Do not show extensions bundle test if CBD is selected. (https://github.com/woocommerce/woocommerce-admin/pull/5040)
This commit is contained in:
parent
dd799b0504
commit
0374d48849
|
@ -84,7 +84,8 @@ class BusinessDetails extends Component {
|
|||
this.bundleInstall =
|
||||
getCountryCode( settings.woocommerce_default_country ) === 'US' &&
|
||||
( industrySlugs.includes( 'fashion-apparel-accessories' ) ||
|
||||
industrySlugs.includes( 'health-beauty' ) );
|
||||
industrySlugs.includes( 'health-beauty' ) ) &&
|
||||
! industrySlugs.includes( 'cbd-other-hemp-derived-products' );
|
||||
this.onContinue = this.onContinue.bind( this );
|
||||
this.validate = this.validate.bind( this );
|
||||
this.getNumberRangeString = this.getNumberRangeString.bind( this );
|
||||
|
|
Loading…
Reference in New Issue