Skip to content

Commit

Permalink
bugfix(notification): fix isread click action result
Browse files Browse the repository at this point in the history
  • Loading branch information
manojava-gk committed Jul 12, 2023
1 parent 8df4fb5 commit f9d6ece
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@
- BugFix
- Home - Carousel
- Responsiveness - when switching the portal width screens get rendering issues
- Notification
- isRead action issue fix
- Company Role Update
- Change the payload data as per backend logic
- App Subscription
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ export default function NotificationItem({
className="padding-r-10"
onClick={(e) => {
setUserRead(!userRead)
setRead(item.id, userRead)
setRead(item.id, !userRead)
e.stopPropagation()
}}
>
Expand Down

0 comments on commit f9d6ece

Please sign in to comment.