fix: lint cleanups

This commit is contained in:
Peter Steinberger
2026-01-31 07:59:01 +00:00
parent a42e1c82d9
commit ee26b68fe1
3 changed files with 7 additions and 3 deletions

View File

@@ -152,7 +152,7 @@ async function callBrowserProxy(params: {
if (!parsed || typeof parsed !== "object" || !("result" in parsed)) {
throw new Error("browser proxy failed");
}
return parsed as BrowserProxyResult;
return parsed;
}
async function persistProxyFiles(files: BrowserProxyFile[] | undefined) {