Skip to content

Commit

Permalink
fix : 알림페이지 버그 수정 (#392)
Browse files Browse the repository at this point in the history
  • Loading branch information
kangminguu authored Dec 9, 2024
1 parent 54903cf commit 7bab79f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/Notification/NotificationPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export const NotificationPage = () => {
<div>
<h3 className="text-[14px] text-[#22B8EF]">이전 알림</h3>
<Margin top={8} />
{unReadNotifications.length > 0 ? (
{readNotifications.length > 0 ? (
<NotificationContainer notifications={readNotifications} />
) : (
<ZeroNotification />
Expand Down

0 comments on commit 7bab79f

Please sign in to comment.