b59aa07
1
2
3
4
5
6
7
8
import { useMutation } from "@tanstack/react-query"; import OpenHands from "#/api/open-hands"; export const useGetTrajectory = () => useMutation({ mutationFn: (cid: string) => OpenHands.getTrajectory(cid), });