clean up console logs

This commit is contained in:
Henry Jameson 2026-08-04 14:44:30 +03:00
commit 8df95bedbb
3 changed files with 0 additions and 4 deletions

View file

@ -367,7 +367,6 @@ const Chat = {
}
},
async startFetching() {
console.log(this.statusId, this.chatUserId)
if (!this.isConversation) {
try {
const { data } = await getOrCreateChat({

View file

@ -200,7 +200,6 @@ const Status = {
)
},
status() {
console.log('s', this.statusoid)
if (this.retweet) {
return this.statusoid.retweeted_status
} else {

View file

@ -188,7 +188,6 @@ export const useInterfaceStore = defineStore('interface', {
this.globalNotices = this.globalNotices.filter((n) => n !== notice)
},
setGlobalError({ error, instance, info }) {
console.log(info)
switch (info) {
case 'https://vuejs.org/error-reference/#runtime-13': {
this.globalError = {
@ -206,7 +205,6 @@ export const useInterfaceStore = defineStore('interface', {
break
}
}
console.log(this.globalError)
},
clearGlobalError() {
this.globalError = null