mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-09 20:44:32 +00:00
feat: add providers CLI and multi-account onboarding
This commit is contained in:
@@ -257,8 +257,10 @@ export async function noteStateIntegrity(
|
||||
const recent = entries
|
||||
.slice()
|
||||
.sort((a, b) => {
|
||||
const aUpdated = typeof a[1].updatedAt === "number" ? a[1].updatedAt : 0;
|
||||
const bUpdated = typeof b[1].updatedAt === "number" ? b[1].updatedAt : 0;
|
||||
const aUpdated =
|
||||
typeof a[1].updatedAt === "number" ? a[1].updatedAt : 0;
|
||||
const bUpdated =
|
||||
typeof b[1].updatedAt === "number" ? b[1].updatedAt : 0;
|
||||
return bUpdated - aUpdated;
|
||||
})
|
||||
.slice(0, 5);
|
||||
|
||||
Reference in New Issue
Block a user