Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/pages/store/_components/ListCard/ListCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
src={image || DefaultImage}
alt="가게 이미지"
fill
onError={e => {

Check warning on line 42 in src/pages/store/_components/ListCard/ListCard.tsx

View workflow job for this annotation

GitHub Actions / build

'e' is defined but never used
setImage(DefaultImage);
}}
/>
Expand All @@ -62,7 +62,9 @@
</S.JobMetaSection>
</S.JobSummary>
<S.PaySection>
<S.HourlyPay isClosed={closed}>{hourlyPay}원</S.HourlyPay>
<S.HourlyPay isClosed={closed}>
{hourlyPay.toLocaleString('ko-KR')}원
</S.HourlyPay>
{isIncrease && (
<S.PayIncreaseBadgeSection isClosed={closed}>
<S.PayIncreaseBadge isClosed={closed}>
Expand Down
Loading