Skip to content

Commit

Permalink
fix: 간격 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
jinjoo-jung committed Jan 27, 2024
1 parent b811314 commit 89bf8c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/CouponList/CouponItem/CouponStop/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ const CouponStop = ({ couponInfo }: CouponListProps) => {
<ExposeDateWrap>
<ExposeDateTitle>노출기간</ExposeDateTitle>
<ExposeValue>
{formatDate(couponInfo.exposure_start_date)} ~
{formatDate(couponInfo.exposure_start_date)} ~{' '}
{formatDate(couponInfo.exposure_end_date)}
</ExposeValue>
</ExposeDateWrap>
Expand Down
2 changes: 1 addition & 1 deletion src/components/CouponList/CouponItem/CouponWait/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ const CouponWait = ({ couponInfo }: CouponListProps) => {
<ExposeDateWrap>
<ExposeDateTitle>노출기간</ExposeDateTitle>
<ExposeValue>
{formatDate(couponInfo.exposure_start_date)} ~
{formatDate(couponInfo.exposure_start_date)} ~{' '}
{formatDate(couponInfo.exposure_end_date)}
</ExposeValue>
</ExposeDateWrap>
Expand Down

0 comments on commit 89bf8c7

Please sign in to comment.