chore: fix lint/test gating

This commit is contained in:
Peter Steinberger
2025-12-26 23:54:30 +00:00
parent a3dc46bf9d
commit 2477ffd860
7 changed files with 21 additions and 12 deletions

View File

@@ -123,7 +123,7 @@ export function registerBrowserAgentRoutes(
const body = readBody(req);
const kind = toStringOrEmpty(body.kind) as ActKind;
const targetId = toStringOrEmpty(body.targetId) || undefined;
if (Object.prototype.hasOwnProperty.call(body, "selector")) {
if (Object.hasOwn(body, "selector")) {
return jsonError(res, 400, SELECTOR_UNSUPPORTED_MESSAGE);
}