Technician clock issues IO-731
This commit is contained in:
@@ -47,13 +47,14 @@ export function JobLinesComponent({
|
||||
form,
|
||||
}) {
|
||||
const [deleteJobLine] = useMutation(DELETE_JOB_LINE_BY_PK);
|
||||
|
||||
const {
|
||||
loading: billLinesLoading,
|
||||
error: billLinesError,
|
||||
data: billLinesData,
|
||||
} = useQuery(QUERY_BILLS_BY_JOB_REF, {
|
||||
variables: { jobId: job.id },
|
||||
skip: loading,
|
||||
variables: { jobId: job && job.id },
|
||||
skip: loading || !job,
|
||||
});
|
||||
|
||||
const billLinesDataObj = useMemo(() => {
|
||||
|
||||
Reference in New Issue
Block a user