Skip to content

Commit

Permalink
Fix(mogua-station#123): 빌드에러 해결을 위한 코드 수정
Browse files Browse the repository at this point in the history
- 리뷰 컴포넌트의 '모임종료일'을 옵셔널로 변경
  • Loading branch information
Stilllee committed Feb 3, 2025
1 parent 58de093 commit c8740cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/common/review/ReviewContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default function Content({ reviewContent, isOpen }: ContentProps) {
{reviewContent.title}
</span>
<span className='inline-block pl-2 text-label-reading font-regular text-gray-400'>
{reviewContent.meetingEndDate.toLocaleDateString("ko-KR")}
{reviewContent.meetingEndDate?.toLocaleDateString("ko-KR") ?? "-"}
</span>
</div>
)}
Expand Down

0 comments on commit c8740cd

Please sign in to comment.