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() { async startFetching() {
console.log(this.statusId, this.chatUserId)
if (!this.isConversation) { if (!this.isConversation) {
try { try {
const { data } = await getOrCreateChat({ const { data } = await getOrCreateChat({

View file

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

View file

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