@tanstack/table-core 8.10.3 → 8.10.4

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.
@@ -3448,7 +3448,9 @@ function getSortedRowModel() {
3448
3448
  const sortData = rows => {
3449
3449
  // This will also perform a stable sorting using the row index
3450
3450
  // if needed.
3451
- const sortedData = [...rows];
3451
+ const sortedData = rows.map(row => ({
3452
+ ...row
3453
+ }));
3452
3454
  sortedData.sort((rowA, rowB) => {
3453
3455
  for (let i = 0; i < availableSorting.length; i += 1) {
3454
3456
  var _sortEntry$desc;