Skip to content

Commit

Permalink
fix :: conflict 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
KANGYONGSU23 committed Nov 28, 2023
1 parent 40e81f7 commit 425035b
Showing 1 changed file with 3 additions and 14 deletions.
17 changes: 3 additions & 14 deletions src/components/common/SearchDropDown.tsx
Original file line number Diff line number Diff line change
@@ -1,17 +1,10 @@
"use client";

import { GetCode } from "@/apis/code";
import { useGetCode } from "@/apis/code";
import { useDropDown } from "@/hook/useDropDown";
import useForm from "@/hook/useForm";
<<<<<<< HEAD
import Chips from "./Chips";
import { useGetCode } from "@/apis/code";
=======
import {
RecruitmentsQueryType
} from "@/hook/useQueryString/type";
import { RecruitmentsQueryType } from "@/hook/useQueryString/type";
import { useQueryString } from "@/hook/useQueryString/useQueryString";
>>>>>>> develop
import { TechCodeResponensType } from "@/util/type";
import { Icon } from "@team-return/design-system";
import React, { useEffect, useState } from "react";
Expand Down Expand Up @@ -70,11 +63,7 @@ function TechCodeDropDownComponent({
techCodeSearch: "",
});

<<<<<<< HEAD
const { data } = useGetCode("TECH", searchKeyword);
=======
const { data:codes } = GetCode("TECH", searchKeyword);
>>>>>>> develop
const { data: codes } = useGetCode("TECH", searchKeyword);

useEffect(() => {
const techArray = getQueryString("tech_code")
Expand Down

0 comments on commit 425035b

Please sign in to comment.