diff --git a/src/client/components/notes.vue b/src/client/components/notes.vue index 0fa02681f..20076eff0 100644 --- a/src/client/components/notes.vue +++ b/src/client/components/notes.vue @@ -36,19 +36,6 @@ export default Vue.extend({ mixins: [ paging({ - onPrepend: (self, note) => { - // タブが非表示なら通知 - if (document.hidden) { - if ('Notification' in window && Notification.permission === 'granted') { - new Notification(getUserName(note.user), { - body: getNoteSummary(note), - icon: note.user.avatarUrl, - tag: 'newNote' - }); - } - } - }, - before: (self) => { self.$emit('before'); },