@wlloyalty/wll-react-sdk 1.0.70 → 1.0.71

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/native.js CHANGED
@@ -3986,7 +3986,7 @@ var GroupSections = function () {
3986
3986
  }
3987
3987
  var sortedSections = sortByPriority(activeSections);
3988
3988
  var Container = IS_WEB ? reactNative.View : reactNative.ScrollView;
3989
- return (jsxRuntimeExports.jsx(Container, { accessible: true, accessibilityLabel: "Group: ".concat(groupData.name || 'Unnamed group'), style: styles$1.container, children: sortedSections.map(function (section) { return (jsxRuntimeExports.jsx(Section, { section: section }, section.id)); }) }));
3989
+ return (jsxRuntimeExports.jsx(Container, { accessible: true, accessibilityLabel: "Group: ".concat(groupData.name || 'Unnamed group'), contentContainerStyle: !IS_WEB ? styles$1.container : undefined, children: sortedSections.map(function (section) { return (jsxRuntimeExports.jsx(Section, { section: section }, section.id)); }) }));
3990
3990
  };
3991
3991
  /**
3992
3992
  * A page-level component that represents a Group view in the application.