Typescript error for @tanstack/react-query useMutation
If I use it as specified in the document, there is no problem. However, when I try to access the API variables, TypeScript gets angry. The type of the variables is void.
As a solution, if I create mutationFn as an external variable, typescript does not give an error and the type of the variables is shown correctly.
3 Replies
Could you open this issue on the repo? @hasanaktasTR https://github.com/get-convex/convex-react-query/issues
GitHub
Issues · get-convex/convex-react-query
Contribute to get-convex/convex-react-query development by creating an account on GitHub.
looks like a TypeScript issue we can fix
GitHub
Typescript error for useMutation · Issue #4 · get-convex/convex-rea...
import { api } from "@backend/convex/_generated/api"; import { useMutation } from "@tanstack/react-query"; import { useConvexMutation } from "@convex-dev/react-query";...