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