From d2b965f79ed0207e5e68b478c4af61911ed38643 Mon Sep 17 00:00:00 2001 From: Patrick Fic <> Date: Tue, 12 Oct 2021 16:40:27 -0700 Subject: [PATCH] Resolve CI Issue. --- .../owner-find-modal/owner-find-modal.container.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/components/owner-find-modal/owner-find-modal.container.jsx b/client/src/components/owner-find-modal/owner-find-modal.container.jsx index a7ccb3635..7e59b1f85 100644 --- a/client/src/components/owner-find-modal/owner-find-modal.container.jsx +++ b/client/src/components/owner-find-modal/owner-find-modal.container.jsx @@ -1,6 +1,6 @@ +import { useLazyQuery } from "@apollo/client"; import { Input, Modal } from "antd"; -import React, { useState, useEffect } from "react"; -import { useLazyQuery, useQuery } from "@apollo/client"; +import React, { useEffect, useState } from "react"; import { useTranslation } from "react-i18next"; import { QUERY_SEARCH_OWNER_BY_IDX } from "../../graphql/owners.queries"; import AlertComponent from "../alert/alert.component";