fix: remove console.debug statements for lint compliance

Amp-Thread-ID: https://ampcode.com/threads/T-019c21eb-bc34-763e-a553-17ff79018dcf
This commit is contained in:
bymyself
2026-02-02 21:30:47 -08:00
parent 85b56f1323
commit d279d020df

View File

@@ -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)')
}
}