import { useQuery } from "@tanstack/react-query"; | |
import OpenHands from "#/api/open-hands"; | |
import { useIsAuthed } from "./use-is-authed"; | |
export const useUserConversations = () => { | |
const { data: userIsAuthenticated } = useIsAuthed(); | |
return useQuery({ | |
queryKey: ["user", "conversations"], | |
queryFn: OpenHands.getUserConversations, | |
enabled: !!userIsAuthenticated, | |
}); | |
}; | |