mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-08 00:01:24 +00:00
Fix: resolve pnpm check type regressions
This commit is contained in:
@@ -392,7 +392,7 @@ export async function rejectDevicePairing(
|
||||
idKey: "deviceId",
|
||||
loadState: () => loadState(baseDir),
|
||||
persistState: (state) => persistState(state, baseDir),
|
||||
getId: (pending) => pending.deviceId,
|
||||
getId: (pending: DevicePairingPendingRequest) => pending.deviceId,
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
@@ -204,7 +204,7 @@ export async function rejectNodePairing(
|
||||
idKey: "nodeId",
|
||||
loadState: () => loadState(baseDir),
|
||||
persistState: (state) => persistState(state, baseDir),
|
||||
getId: (pending) => pending.nodeId,
|
||||
getId: (pending: NodePairingPendingRequest) => pending.nodeId,
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user