@economic/taco 2.67.1-footer-fix.0 → 2.67.1-footer-fix.1

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/taco.js CHANGED
@@ -37930,10 +37930,11 @@ function useTableRenderer(renderers, table, tableRef, length, defaultRowActiveIn
37930
37930
  row = rows[virtualRow.index];
37931
37931
  }
37932
37932
  if (!(row == null ? void 0 : row.original)) {
37933
+ const skeletonKey = `skeleton-${virtualRow.index}-${JSON.stringify(table.getState().sorting).slice(0, 8)}`;
37933
37934
  return /* @__PURE__ */ React__default.createElement(
37934
37935
  SkeletonRow,
37935
37936
  {
37936
- key: virtualRow.index,
37937
+ key: skeletonKey,
37937
37938
  index: virtualRow.index,
37938
37939
  scrollDirection: virtualiser.scrollDirection ?? void 0,
37939
37940
  table