File size: 316 Bytes
246d201 |
1 2 3 4 5 6 7 8 9 10 11 |
import { useQuery } from "@tanstack/react-query";
import OpenHands from "#/api/open-hands";
export const useUserConversation = (cid: string | null) =>
useQuery({
queryKey: ["user", "conversation", cid],
queryFn: () => OpenHands.getConversation(cid!),
enabled: !!cid,
retry: false,
});
|