feature/IO-3497-Ant-Design-v5-to-v6 - Checkpoint (Apollo)

This commit is contained in:
Dave
2026-01-13 12:15:19 -05:00
parent f99f8ab7f8
commit 912d503ef8
263 changed files with 800 additions and 681 deletions

View File

@@ -1,4 +1,4 @@
import { useLazyQuery, useMutation } from "@apollo/client";
import { useLazyQuery, useMutation } from "@apollo/client/react";
import { Form } from "antd";
import _ from "lodash";
import { useEffect, useState } from "react";
@@ -51,9 +51,7 @@ function JobsCreateContainer({ bodyshop, setBreadcrumbs, setSelectedHeader, curr
useEffect(() => {
if (state.owner.selectedid) {
loadOwner({
variables: { id: state.owner.selectedid }
});
loadOwner({ id: state.owner.selectedid });
}
}, [state.owner.selectedid, loadOwner]);