feat: Use tag ids instead of values wherever possible (#8394)
This commit is contained in:
@@ -51,8 +51,8 @@ export const Notifications = () => {
|
||||
}
|
||||
}, [])
|
||||
|
||||
const handleOnOpen = (isOpen: boolean) => {
|
||||
if (isOpen) {
|
||||
const handleOnOpen = (shouldOpen: boolean) => {
|
||||
if (shouldOpen) {
|
||||
setHasUnread(false)
|
||||
setOpen(true)
|
||||
localStorage.setItem(LAST_READ_NOTIFICATION_KEY, new Date().toISOString())
|
||||
|
||||
Reference in New Issue
Block a user