@streamoid/catalogix-chat 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3507,7 +3507,7 @@ function CatalogixChat(props) {
|
|
|
3507
3507
|
const componentName = uiProps._componentName ?? "";
|
|
3508
3508
|
const section = meta?.step || SECTION_MAP[componentName] || componentName;
|
|
3509
3509
|
const catalogixBaseUrl = uiProps.catalogixBaseUrl ?? "";
|
|
3510
|
-
const storeId = uiProps.storeId ?? "";
|
|
3510
|
+
const storeId = uiProps.storeId ?? uiProps.store_uuid ?? "";
|
|
3511
3511
|
const stores = uiProps.stores ?? [];
|
|
3512
3512
|
const channelsWithVersion = uiProps.channelsWithVersion ?? void 0;
|
|
3513
3513
|
const selectedProducts = uiProps.selectedProducts ?? [];
|
package/package.json
CHANGED