getting rid of console.logs

This commit is contained in:
Henry Jameson 2025-03-25 19:58:12 +02:00
commit 72ebbd93f6
2 changed files with 0 additions and 7 deletions

View file

@ -363,12 +363,6 @@ const PostStatusForm = {
} }
}, },
safeToSaveDraft () { safeToSaveDraft () {
console.log('safe', (
this.newStatus.status ||
this.newStatus.spoilerText ||
this.newStatus.files?.length ||
this.newStatus.hasPoll
) && this.saveable)
return ( return (
this.newStatus.status || this.newStatus.status ||
this.newStatus.spoilerText || this.newStatus.spoilerText ||

View file

@ -338,7 +338,6 @@ const Status = {
return this.mergedConfig.hideWordFilteredPosts return this.mergedConfig.hideWordFilteredPosts
}, },
hideStatus () { hideStatus () {
console.log(this.muteFilterHits[0])
return (!this.shouldNotMute) && ( return (!this.shouldNotMute) && (
(this.muted && this.hideFilteredStatuses) || (this.muted && this.hideFilteredStatuses) ||
(this.userIsMuted && this.hideMutedUsers) || (this.userIsMuted && this.hideMutedUsers) ||