Skip to content

Commit

Permalink
fix: 직군 모집 카드에서 아이콘이 정상적으로 나오도록 수정 (#433)
Browse files Browse the repository at this point in the history
  • Loading branch information
klmhyeonwoo authored Dec 2, 2024
2 parents 97430c1 + 549141b commit d17de00
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion src/components/Positions/PositionsItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,11 @@ export function PositionsItem({ type, title, link, description, keyword }: Posit
return (
<Fragment>
<span> 지원하기 </span>
<Icon icon={state ? 'ic_arrow_black' : 'ic_arrow_white'} size={24} direction={'right'} />
<Icon
icon={state === 'default' ? 'ic_arrow_black' : 'ic_arrow_white'}
size={24}
direction={'right'}
/>
</Fragment>
);
} else if (progressState === 'PREVIOUS') {
Expand Down
4 changes: 2 additions & 2 deletions src/constant/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ export const NOTION_RECRUIT_PATH =
'https://depromeet.notion.site/DEPROMEET-13th-f1e931cf073e43c4aeca44a4521b44be';

// NOTE: UTC 타임존에 맞추기 위해 9시간을 뺌
export const START_DATE = adjustToUTC({ dateString: '2024-12-02T22:10:00.000Z' });
export const END_DATE = adjustToUTC({ dateString: '2024-12-02T22:20:00.000Z' });
export const START_DATE = adjustToUTC({ dateString: '2024-12-02T23:59:59.000Z' });
export const END_DATE = adjustToUTC({ dateString: '2024-12-09T23:59:59.000Z' });

// export const START_DATE = '2024-04-19T06:00:00.000Z'; // test
// export const END_DATE = '2025-03-04T20:00:00.000Z'; // test
Expand Down

0 comments on commit d17de00

Please sign in to comment.