react-restyle-components 0.3.31 → 0.3.32

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.
@@ -70,7 +70,7 @@ export const AutoCompleteFilterGroupByMultipleSelectMultipleFieldsDisplay = ({ u
70
70
  // If data.list is an array, it's the regular structure
71
71
  // Group by 'lab' field or create a single group
72
72
  const grouped = data.list.reduce((groups, item) => {
73
- const groupKey = item.lab || 'Default';
73
+ const groupKey = item?.lab || 'Default';
74
74
  if (!groups[groupKey]) {
75
75
  groups[groupKey] = [];
76
76
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-restyle-components",
3
- "version": "0.3.31",
3
+ "version": "0.3.32",
4
4
  "private": false,
5
5
  "description": "Easy use restyle components",
6
6
  "author": {