remove unnecessary console.log()s

This commit is contained in:
notfire 2025-03-30 17:15:24 -04:00
parent f601879228
commit 7a26107808
Signed by: notfire
GPG key ID: 3AFDACAAB4E56B16
2 changed files with 0 additions and 2 deletions

View file

@ -122,7 +122,6 @@ const Notification = {
if (reactionsFilterItems.length > 0)
reactionsFilterItems.forEach((item) => {
console.log(emoji)
if (
// match regex
// >1 check is to prevent = just disabling all emoji reacts

View file

@ -207,7 +207,6 @@ export const mutations = {
})
},
saveBlockIds (state, blockIds) {
console.log("ADDING BLOCK IDS", blockIds);
state.currentUser.blockIds = uniq(concat(state.currentUser.blockIds || [], blockIds))
},
addBlockId (state, blockId) {