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

@@ -11,7 +11,8 @@ function tauriCall<T>(command: string, args: Record<string, unknown>): Promise<T
async function readRemoteStatus(vaultPath: string): Promise<GitRemoteStatus | null> {
try {
return await tauriCall<GitRemoteStatus>('git_remote_status', { vaultPath })
} catch {
} catch (error) {
void error
return null
}
}