fix: add dev-mode warnings to all 24 silent catch blocks

Every empty/comment-only catch block now logs a descriptive warning
in dev mode via `if (import.meta.env.DEV) console.warn(...)`. Covers
15 files across views, stores, components, and utils. Zero silent
catches remaining.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Dorian
2026-03-11 00:58:55 +00:00
co-authored by Claude Opus 4.6
parent 7a7cbf1da3
commit bc879b3581
16 changed files with 45 additions and 43 deletions
@@ -255,8 +255,8 @@ function checkIframeContent() {
if (!body || (body.children.length === 0 && body.innerText.trim() === '')) {
iframeBlocked.value = true
}
} catch {
// Cross-origin: can't access, assume working
} catch (e) {
if (import.meta.env.DEV) console.warn('Cross-origin: can\'t access iframe, assume working', e)
}
}
@@ -289,8 +289,8 @@ async function sendIdentityIfSupported() {
challenge,
signature: sigRes.signature
}, '*')
} catch {
// Identity not available — continue without it
} catch (e) {
if (import.meta.env.DEV) console.warn('Identity not available — continuing without it', e)
}
}
+4 -3
View File
@@ -178,7 +178,8 @@ function loadSavedPosition() {
} else {
savedPosition.value = null
}
} catch {
} catch (e) {
if (import.meta.env.DEV) console.warn('Failed to load saved CLI position', e)
savedPosition.value = null
}
}
@@ -187,8 +188,8 @@ function savePosition(x: number, y: number) {
savedPosition.value = { x, y }
try {
localStorage.setItem(SAVED_POSITION_KEY, JSON.stringify({ x, y }))
} catch {
// ignore
} catch (e) {
if (import.meta.env.DEV) console.warn('Failed to save CLI position', e)
}
}
+4 -3
View File
@@ -191,7 +191,8 @@ function loadSavedPosition() {
} else {
savedPosition.value = null
}
} catch {
} catch (e) {
if (import.meta.env.DEV) console.warn('Failed to load saved spotlight position', e)
savedPosition.value = null
}
}
@@ -200,8 +201,8 @@ function savePosition(x: number, y: number) {
savedPosition.value = { x, y }
try {
localStorage.setItem(SAVED_POSITION_KEY, JSON.stringify({ x, y }))
} catch {
// ignore
} catch (e) {
if (import.meta.env.DEV) console.warn('Failed to save spotlight position', e)
}
}
+2 -2
View File
@@ -173,8 +173,8 @@ onMounted(async () => {
}
}
}
} catch {
// Not shared yet, defaults are fine
} catch (e) {
if (import.meta.env.DEV) console.warn('Not shared yet, defaults are fine', e)
}
})