fix: clear codacy high severity batches

This commit is contained in:
lucaronin
2026-05-07 19:52:14 +02:00
parent f5866a2376
commit 8d35fbcba3
37 changed files with 800 additions and 350 deletions

View File

@@ -16,7 +16,8 @@ async function checkAvailability(v: { label: string; path: string }): Promise<Va
try {
const exists = await tauriCall<boolean>('check_vault_exists', { path: v.path })
return { label: v.label, path: v.path, available: exists }
} catch {
} catch (error) {
void error
return { label: v.label, path: v.path, available: false }
}
}