Skip to content

Commit

Permalink
hotfix : 이벤트 날짜 ui 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
(hoooooony) committed May 10, 2024
1 parent 33bdf5c commit c8a451f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export default function EventCard({
>
<EventContent html={event.content} />
</div>
<div className={styles.eventUpdatedAt}>{event.start_date.replace(/-/g, '.')}</div>
<div className={styles.eventUpdatedAt}>{`${event.start_date.replace(/-/g, '.')} - ${event.end_date.replace(/-/g, '.')}`}</div>
</div>
</div>
);
Expand Down

0 comments on commit c8a451f

Please sign in to comment.