Fix JS errors when the OBW business step is accessed directly via URL (#35045)
* Set default value for product types * Add changelog
This commit is contained in:
parent
c55c91d7e0
commit
0f58f2efbd
|
@ -819,7 +819,7 @@ export const BusinessFeaturesList = compose(
|
||||||
? getInstallableExtensions( {
|
? getInstallableExtensions( {
|
||||||
freeExtensionBundleByCategory: freeExtensions,
|
freeExtensionBundleByCategory: freeExtensions,
|
||||||
country,
|
country,
|
||||||
productTypes: profileItems.product_types,
|
productTypes: profileItems.product_types || [],
|
||||||
} )
|
} )
|
||||||
: [];
|
: [];
|
||||||
const hasInstallableExtensions = installableExtensions.some(
|
const hasInstallableExtensions = installableExtensions.some(
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
Significance: patch
|
||||||
|
Type: fix
|
||||||
|
|
||||||
|
Fix JS error when the business step is accessed directly via URL without completing the previous steps
|
Loading…
Reference in New Issue