tweak: ensure most recently interacted with session appears at the top (#1239)

This commit is contained in:
Aiden Cline
2025-07-22 22:37:36 -05:00
committed by GitHub
parent 1acf196e98
commit 7f3c98aa1f
3 changed files with 3 additions and 4 deletions
+1
View File
@@ -196,6 +196,7 @@ export namespace Server {
}),
async (c) => {
const sessions = await Array.fromAsync(Session.list())
sessions.sort((a, b) => b.time.updated - a.time.updated)
return c.json(sessions)
},
)