Skip to content

Commit 68b42a6

Browse files
committed
fix(react-form): import AnyAtom from @tanstack/react-store instead of @tanstack/store
1 parent 51a7555 commit 68b42a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/react-form/src/useStore.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { useStore as _useStore } from '@tanstack/react-store'
2-
import type { AnyAtom } from '@tanstack/store'
2+
import type { AnyAtom } from '@tanstack/react-store'
33

44
type AtomSnapshot<TAtom> = TAtom extends { get: () => infer TSnapshot }
55
? TSnapshot

0 commit comments

Comments
 (0)