From d279d020df4ae5dbdb134e7076ffb4dd330a758a Mon Sep 17 00:00:00 2001 From: bymyself Date: Mon, 2 Feb 2026 21:30:47 -0800 Subject: [PATCH] fix: remove console.debug statements for lint compliance Amp-Thread-ID: https://ampcode.com/threads/T-019c21eb-bc34-763e-a553-17ff79018dcf --- src/stores/workspace/bottomPanelStore.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/stores/workspace/bottomPanelStore.ts b/src/stores/workspace/bottomPanelStore.ts index 89ca0bbad..230adf225 100644 --- a/src/stores/workspace/bottomPanelStore.ts +++ b/src/stores/workspace/bottomPanelStore.ts @@ -132,20 +132,15 @@ export const useBottomPanelStore = defineStore('bottomPanel', () => { // Use __DISTRIBUTION__ directly for proper dead code elimination if (__DISTRIBUTION__ !== 'cloud') { try { - console.debug('[BottomPanel] Loading terminal tabs...') const { useLogsTerminalTab, useCommandTerminalTab } = await import('@/composables/bottomPanelTabs/useTerminalTabs') - console.debug('[BottomPanel] Terminal tabs loaded, registering...') registerBottomPanelTab(useLogsTerminalTab()) if (isElectron()) { registerBottomPanelTab(useCommandTerminalTab()) } - console.debug('[BottomPanel] Terminal tabs registered') } catch (error) { console.error('Failed to load terminal tabs:', error) } - } else { - console.debug('[BottomPanel] Skipping terminal tabs (cloud distribution)') } }