fix: sort last seen by time
This commit is contained in:
parent
da06d5a256
commit
885d3a378e
1 changed files with 1 additions and 1 deletions
|
@ -47,5 +47,5 @@ export async function fetchLastSeen() {
|
|||
res.push(forgejoData)
|
||||
}
|
||||
|
||||
return res
|
||||
return res.sort((a, b) => b.time - a.time)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue