Skip to content

Commit 1909055

Browse files
fix(vue): use noop batch in reactivity instead of tanstack store fn (TanStack#6402)
1 parent 8fe7d60 commit 1909055

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

packages/vue-table/src/reactivity.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { computed, shallowRef, watch } from 'vue'
2-
import { batch } from '@tanstack/store'
32
import type {
43
TableAtomOptions,
54
TableReactivityBindings,
@@ -84,6 +83,6 @@ export function vueReactivity(): TableReactivityBindings {
8483
return refToWritableAtom(shallowRef(value) as ShallowRef<T>)
8584
},
8685
untrack: (fn) => fn(),
87-
batch,
86+
batch: (fn) => fn(),
8887
}
8988
}

0 commit comments

Comments
 (0)