Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
JJIIIINN committed Mar 25, 2024
2 parents 8fb20f0 + 8fe8010 commit a23dacb
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions src/Components/RecruitmentForm/Search/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,12 @@ export function RecruitmentFormSearch({ refetchRecruitmentForm }: PropsType) {
<_.ContentWrapper width={12.3}>
<DropDown
width={86}
option={['전체', '체험형', '채용형']}
option={['체험형', '채용형']}
value={getValueByKey(
winterIntern,
recruitmentFormQueryString.winter_intern
)}
onChange={(type) =>
type !== '전체' &&
recruitmentFormQueryStringDropDown(
'winter_intern',
winterIntern[type]
Expand Down
2 changes: 1 addition & 1 deletion src/Store/State.ts
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ export const useRecruitmentFormQueryString =
start: ``,
end: ``,
status: '',
winter_intern: null,
winter_intern: false,
page: 1,
},
recruitmentFormQueryStringHandler: (e) =>
Expand Down
1 change: 0 additions & 1 deletion src/Utils/Translation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ export const hiringProgress: { [key: string]: string } = {
};

export const winterIntern: { [key: string]: boolean | null } = {
전체: null,
체험형: true,
채용형: false,
};

0 comments on commit a23dacb

Please sign in to comment.