consistentcy and bugfix
This commit is contained in:
parent
c216340001
commit
a564fc1a1f
2 changed files with 3 additions and 3 deletions
|
|
@ -21,7 +21,7 @@ export const showDesktopNotification = (rootState, desktopNotificationOpts) => {
|
|||
}
|
||||
}
|
||||
|
||||
export const closeDesktopNotification = (rootState, id) => {
|
||||
export const closeDesktopNotification = (rootState, { id }) => {
|
||||
if (!('Notification' in window && window.Notification.permission === 'granted')) return
|
||||
|
||||
if (isSWSupported()) {
|
||||
|
|
@ -33,6 +33,6 @@ export const closeAllDesktopNotifications = (rootState) => {
|
|||
if (!('Notification' in window && window.Notification.permission === 'granted')) return
|
||||
|
||||
if (isSWSupported()) {
|
||||
swCloseDesktopNotification()
|
||||
swCloseDesktopNotification({})
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue