From 8df95bedbb208d15b33442ecea421e9330dbe5ff Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Tue, 4 Aug 2026 14:44:30 +0300 Subject: [PATCH] clean up console logs --- src/components/chat_view/chat_view.js | 1 - src/components/status/status.js | 1 - src/stores/interface.js | 2 -- 3 files changed, 4 deletions(-) diff --git a/src/components/chat_view/chat_view.js b/src/components/chat_view/chat_view.js index 33485aebe..f48b75c65 100644 --- a/src/components/chat_view/chat_view.js +++ b/src/components/chat_view/chat_view.js @@ -367,7 +367,6 @@ const Chat = { } }, async startFetching() { - console.log(this.statusId, this.chatUserId) if (!this.isConversation) { try { const { data } = await getOrCreateChat({ diff --git a/src/components/status/status.js b/src/components/status/status.js index b87acc3d7..fb37a7faf 100644 --- a/src/components/status/status.js +++ b/src/components/status/status.js @@ -200,7 +200,6 @@ const Status = { ) }, status() { - console.log('s', this.statusoid) if (this.retweet) { return this.statusoid.retweeted_status } else { diff --git a/src/stores/interface.js b/src/stores/interface.js index 48d7cb061..275d6893d 100644 --- a/src/stores/interface.js +++ b/src/stores/interface.js @@ -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