shellphone.app/app/phone-calls/hooks/use-phone-calls.ts

16 lines
417 B
TypeScript

import { useQuery } from "blitz";
import useCurrentCustomer from "../../core/hooks/use-current-customer";
import getPhoneCalls from "../queries/get-phone-calls";
export default function usePhoneCalls() {
const { customer } = useCurrentCustomer();
if (!customer) {
throw new Error("customer not found");
}
const { phoneCalls } = useQuery(getPhoneCalls, { customerId: customer.id })[0];
return phoneCalls;
}