remove logs

This commit is contained in:
Shpuld Shpuldson 2021-02-01 14:43:01 +02:00
parent 3822a73a49
commit 3e6309ef94
3 changed files with 0 additions and 5 deletions

View File

@ -78,9 +78,6 @@ const Notification = {
this.$store.dispatch('dismissNotificationLocal', { id: this.notification.id })
this.$store.dispatch('removeFollowRequest', this.user)
})
},
testlog (a) {
console.log(a)
}
},
computed: {

View File

@ -66,7 +66,6 @@ const Notifications = {
return this.$store.state.statuses.notifications.loading
},
notificationsToDisplay () {
console.log(this.notifications)
return this.filteredNotifications.slice(0, this.unseenCount + this.seenToDisplayCount)
},
...mapGetters(['unreadChatCount'])

View File

@ -24,7 +24,6 @@ const Report = {
return generateProfileLink(user.id, user.screen_name, this.$store.state.instance.restrictedNicknames)
},
setReportState (state) {
console.log('setting state', state)
return this.$store.dispatch('setReportState', { id: this.report.id, state })
}
}