Reformat all project files to use the prettier config file.

This commit is contained in:
Patrick Fic
2024-03-27 15:35:07 -07:00
parent b161530381
commit e1df64d592
873 changed files with 111387 additions and 125473 deletions

View File

@@ -1,24 +1,19 @@
import {useQuery} from "@apollo/client";
import React, {useContext} from "react";
import {QUERY_SEARCH_OWNER_BY_IDX} from "../../graphql/owners.queries";
import { useQuery } from "@apollo/client";
import React, { useContext } from "react";
import { QUERY_SEARCH_OWNER_BY_IDX } from "../../graphql/owners.queries";
import JobCreateContext from "../../pages/jobs-create/jobs-create.context";
import AlertComponent from "../alert/alert.component";
import JobsCreateOwnerInfoComponent from "./jobs-create-owner-info.component";
export default function JobsCreateOwnerContainer() {
const [state] = useContext(JobCreateContext);
const {loading, error, data} = useQuery(QUERY_SEARCH_OWNER_BY_IDX, {
variables: {search: `%${state.owner.search}%`},
skip: !state.owner.search,
fetchPolicy: "network-only",
nextFetchPolicy: "network-only",
});
const [state] = useContext(JobCreateContext);
const { loading, error, data } = useQuery(QUERY_SEARCH_OWNER_BY_IDX, {
variables: { search: `%${state.owner.search}%` },
skip: !state.owner.search,
fetchPolicy: "network-only",
nextFetchPolicy: "network-only"
});
if (error) return <AlertComponent message={error.message} type="error"/>;
return (
<JobsCreateOwnerInfoComponent
loading={loading}
owners={data ? data.search_owners : null}
/>
);
if (error) return <AlertComponent message={error.message} type="error" />;
return <JobsCreateOwnerInfoComponent loading={loading} owners={data ? data.search_owners : null} />;
}