Skip to content

Commit

Permalink
fix :: optional
Browse files Browse the repository at this point in the history
  • Loading branch information
wlalsplus100 committed Aug 5, 2024
1 parent 4d3311b commit f7a5f9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Main/ApplyandNotice.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ const ApplyandNotice = () => {
<_MainNotificationText>신입생 전형 요강 PDF 파일 다운로드</_MainNotificationText>
<_Img src={Download2} />
</_MainNoticeBox>
{data.notices.length > 0 &&
{data?.notices.length > 0 &&
data?.notices.map((notice: { title: string; createdAt: string; id: string }, index: number) => {
if (index >= 4) return;

Expand Down

0 comments on commit f7a5f9b

Please sign in to comment.