Skip to content

Commit

Permalink
fix :: 빌드 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
hyuna committed May 28, 2024
1 parent b114b1a commit c00780f
Showing 1 changed file with 30 additions and 27 deletions.
57 changes: 30 additions & 27 deletions src/Components/RecruitmentForm/Table/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ import * as _ from './style';
import { useEffect, useState } from 'react';
import { RecruitmentFormResponse } from '../../../Apis/Recruitments/response';
import { Pagination } from '../../../Utils/Pagination';
import { useChangeRecruitmentsStatus } from '../../../Apis/Recruitments/index';
import {
useChangeRecruitmentsStatus,
useRecruitmentCnt,
} from '../../../Apis/Recruitments/index';
import { companyStatus, companyType } from '../../../Utils/Translation';
import { getValueByKey } from '../../../Utils/useGetPropertyKey';
import { searchInArray } from '../../../Utils/useSearchForArray';
Expand Down Expand Up @@ -247,32 +250,32 @@ export function RecruitmentFormTable({
<_.BtnWrapper>
<Button
kind="Ghost"
size="S"
disabled={buttonDisabled}
onClick={() => {
changeStatusBtnClick('READY');
}}
>
접수
</Button>
<Button
kind="Ghost"
size="S"
disabled={buttonDisabled}
onClick={() => {
changeStatusBtnClick('RECRUITING');
}}
>
모집중
</Button>
<Button
kind="Ghost"
size="S"
disabled={buttonDisabled}
onClick={() => {
changeStatusBtnClick('DONE');
}}
>
size="S"
disabled={buttonDisabled}
onClick={() => {
changeStatusBtnClick('READY');
}}
>
접수
</Button>
<Button
kind="Ghost"
size="S"
disabled={buttonDisabled}
onClick={() => {
changeStatusBtnClick('RECRUITING');
}}
>
모집중
</Button>
<Button
kind="Ghost"
size="S"
disabled={buttonDisabled}
onClick={() => {
changeStatusBtnClick('DONE');
}}
>
모집종료
</Button>
</_.BtnWrapper>
Expand Down

0 comments on commit c00780f

Please sign in to comment.