Fix linting issue

This commit is contained in:
Reinier Criel 2025-11-10 11:22:26 -08:00
parent e455828339
commit 1df4e03b47

View file

@ -138,7 +138,7 @@ export async function isSafeChainCAInstalled() {
// Windows: check Root store for cert // Windows: check Root store for cert
return await safeSpawn("certutil", ["-store", "Root", "safe-chain proxy"], { stdio: "pipe" }).then(res => res.stdout.includes("safe-chain proxy")); return await safeSpawn("certutil", ["-store", "Root", "safe-chain proxy"], { stdio: "pipe" }).then(res => res.stdout.includes("safe-chain proxy"));
} }
} catch (err) { } catch (/** @type any */ error) {
// If check fails, assume not installed // If check fails, assume not installed
return false; return false;
} }