Skip to content

Commit

Permalink
fix: 알림 읽음 상태 계속 업데이트 되던 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
ww8007 committed Oct 21, 2023
1 parent da2f717 commit f9de6bb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/notification/ui/NotificationList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ const NotificationList = ({
onClickNotification(
notification.bookmarkId,
String(notification.id),
notification.isChecked,
);
}}
>
Expand All @@ -101,7 +102,7 @@ const NotificationList = ({
mode === 'DELETE' && (
<Box>
<CheckBox
isChecked={notification.isSelected}
isChecked={notification.isChecked}
// eslint-disable-next-line @typescript-eslint/no-empty-function
onChange={() => {}}
/>
Expand All @@ -115,6 +116,7 @@ const NotificationList = ({
onClickNotification(
notification.bookmarkId,
String(notification.id),
notification.isChecked,
)
}
/>
Expand Down

0 comments on commit f9de6bb

Please sign in to comment.