fix: sort last seen by time
Some checks failed
Publish and deploy / deploy (push) Has been cancelled
Publish and deploy / publish (push) Has been cancelled

This commit is contained in:
alina 🌸 2025-01-30 15:51:14 +03:00
parent da06d5a256
commit 885d3a378e
Signed by: teidesu
SSH key fingerprint: SHA256:uNeCpw6aTSU4aIObXLvHfLkDa82HWH9EiOj9AXOIRpI

View file

@ -47,5 +47,5 @@ export async function fetchLastSeen() {
res.push(forgejoData)
}
return res
return res.sort((a, b) => b.time - a.time)
}