Skip to content

Commit

Permalink
Merge pull request #100 from Kusitms-29th-ASAP/fix/#96
Browse files Browse the repository at this point in the history
[Fix] 학급 알림장 오늘의 알림장 수정
  • Loading branch information
uiop5809 authored May 23, 2024
2 parents 5245d62 + 145db4c commit 517ed50
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/school/notification/Notification.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const Notificaiton = (props: NotificationProps) => {
{teacher && notifications ? (
<>
<TopContent isToday={isToday} day={day} teacher={teacher} />
<ListNumberBox data={notifications.descriptions} /> :
<ListNumberBox data={notifications.descriptions} />
</>
) : (
<NoData>알림 내용이 없어요!</NoData>
Expand Down
2 changes: 1 addition & 1 deletion src/components/school/notification/TodayNotification.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const TodayNotification = () => {
<TodayTitle>오늘의 알림장</TodayTitle>
{notiData[0] !== null ? (
<Notification
day={today}
day={notiData[0].writeDate}
teacher={teacher}
notifications={notiData[0]}
isToday={true}
Expand Down

0 comments on commit 517ed50

Please sign in to comment.