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 81780f4 commit c2ca788
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 30 deletions.
4 changes: 2 additions & 2 deletions src/apis/user/index.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { useToastStore, Toast } from "@team-return/design-system";
import { useMutation } from "@tanstack/react-query";
import { useToastStore } from "@team-return/design-system";
import axios, { AxiosError } from "axios";
import { useRouter } from "next/navigation";
import { useCookies } from "react-cookie";
import { RequestBody, ResponseBody } from "./type";
import axios, { AxiosError } from "axios";

const router = "/users";

Expand Down
6 changes: 1 addition & 5 deletions src/components/SuggestionHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,7 @@ interface PropsType {
}

export default function SuggestionHeader({ listType }: PropsType) {
<<<<<<< HEAD
const { data: profile } = MyProfile();
=======
const { data } = useMyProfile();
>>>>>>> develop
const { data: profile } = useMyProfile();

const suggestionHeaderDummy = {
Company: {
Expand Down
6 changes: 1 addition & 5 deletions src/components/common/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,7 @@ function Header() {
return null;
}

<<<<<<< HEAD
const { data: profile } = MyProfile();
=======
const profile = useMyProfile();
>>>>>>> develop
const { data: profile } = useMyProfile();

return (
<div
Expand Down
8 changes: 1 addition & 7 deletions src/components/common/SearchDropDown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,11 @@
import { useGetCode } from "@/apis/code";
import { useDropDown } from "@/hook/useDropDown";
import useForm from "@/hook/useForm";
<<<<<<< HEAD
import Chips from "./Chips";
import { GetCode } from "@/apis/code";
import { TechCodeResponensType } from "@/util/type/type";
=======
import { RecruitmentsQueryType } from "@/hook/useQueryString/type";
import { useQueryString } from "@/hook/useQueryString/useQueryString";
import { TechCodeResponensType } from "@/util/type";
import { TechCodeResponensType } from "@/util/type/type";
import { Icon } from "@team-return/design-system";
import React, { useEffect, useState } from "react";
>>>>>>> develop
import GhostBtn from "./Button/GhostBtn";
import Chips from "./Chips";
import TextFiled from "./TextFiled";
Expand Down
12 changes: 1 addition & 11 deletions src/components/company/CompanyTitle.tsx
Original file line number Diff line number Diff line change
@@ -1,15 +1,9 @@
"use client";

<<<<<<< HEAD
import { getCompanyKebabItems } from "@/util/object/kebabMenuItems";
import { KebabItemType } from "@/util/type/kebabMenu";
import Image from "next/image";
import KebabMenu from "../common/Dropdown/KebabMenu";
=======
import { useDropDown } from "@/hook/useDropDown";
import { Icon } from "@team-return/design-system";
import Image from "next/image";
>>>>>>> develop

interface PropsType {
business_number?: string;
Expand All @@ -28,14 +22,10 @@ export default function CompanyTitle({
onClickInterview,
children,
}: PropsType) {
<<<<<<< HEAD
const kebabItems = getCompanyKebabItems(
const kebabItems: KebabItemType[] = getCompanyKebabItems(
onClickRecruitments,
onClickInterview
);
=======
const { DropDownComponent, toggleDropdown, closeDropDown } = useDropDown();
>>>>>>> develop

return (
<div className="flex items-center justify-between w-full">
Expand Down

0 comments on commit c2ca788

Please sign in to comment.