@tanstack/react-table 8.5.21 → 8.5.22

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.
@@ -3293,7 +3293,7 @@ function groupBy(rows, columnId) {
3293
3293
  if (!previous) {
3294
3294
  map.set(resKey, [row]);
3295
3295
  } else {
3296
- map.set(resKey, [...previous, row]);
3296
+ previous.push(row);
3297
3297
  }
3298
3298
  return map;
3299
3299
  }, groupMap);