mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-04 14:40:25 +00:00
chore: Enable more lint rules, disable some that trigger a lot. Will clean up later.
This commit is contained in:
@@ -13,7 +13,7 @@ export function registerNodesPairingCommands(nodes: Command) {
|
||||
.description("List pending pairing requests")
|
||||
.action(async (opts: NodesRpcOpts) => {
|
||||
await runNodesCommand("pending", async () => {
|
||||
const result = (await callGatewayCli("node.pair.list", opts, {})) as unknown;
|
||||
const result = await callGatewayCli("node.pair.list", opts, {});
|
||||
const { pending } = parsePairingList(result);
|
||||
if (opts.json) {
|
||||
defaultRuntime.log(JSON.stringify(pending, null, 2));
|
||||
|
||||
Reference in New Issue
Block a user