Skip to content

Commit

Permalink
refactor: 불필요한 코드 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
KimJi-An committed Nov 11, 2024
1 parent aca2fdc commit 38a4c3c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
2 changes: 0 additions & 2 deletions src/assets/translator/Applicants/applicantsData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { Languages } from '../Languages';

export const applicantsData = {
[Languages.KO]: {
salary: '시급',
applicant_list: '지원자 목록',
total_applicants: '총 {{count}}명',
view_details: '자세히 보러가기',
Expand All @@ -17,7 +16,6 @@ export const applicantsData = {
},
},
[Languages.VE]: {
salary: 'Lương theo giờ',
applicant_list: 'Danh sách ứng viên',
total_applicants: 'Tổng cộng {{count}} người',
view_details: 'Xem chi tiết',
Expand Down
4 changes: 1 addition & 3 deletions src/pages/myCompanyPage/Recruitments/RecruitmentInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,7 @@ export default function RecruitmentInfo({
</Flex>
<Flex alignItems="center" gap={{ x: '12px' }}>
<SalaryIcon />
<Typo color="gray">
{t('applicants.salary')} {salary}
</Typo>
<Typo color="gray">{salary}</Typo>
</Flex>
</Flex>
</Flex>
Expand Down

0 comments on commit 38a4c3c

Please sign in to comment.