@tanstack/table-core 8.0.0-alpha.62 → 8.0.0-alpha.63

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tanstack/table-core",
3
3
  "author": "Tanner Linsley",
4
- "version": "8.0.0-alpha.62",
4
+ "version": "8.0.0-alpha.63",
5
5
  "description": "Hooks for building lightweight, fast and extendable datagrids for React",
6
6
  "license": "MIT",
7
7
  "homepage": "https://github.com/tanstack/react-table#readme",
package/src/core.ts CHANGED
@@ -142,7 +142,6 @@ export function createTableInstance<TGenerics extends TableGenerics>(
142
142
  // the current call stack (render, etc) has finished.
143
143
  Promise.resolve()
144
144
  .then(() => {
145
- console.log(queued)
146
145
  while (queued.length) {
147
146
  queued.shift()!()
148
147
  }