We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0baee00 commit 130345bCopy full SHA for 130345b
packages/opencode/src/cli/cmd/tui/component/dialog-session-list.tsx
@@ -26,6 +26,7 @@ export function DialogSessionList() {
26
const today = new Date().toDateString()
27
return sync.data.session
28
.filter((x) => x.parentID === undefined)
29
+ .toSorted((a, b) => b.time.updated - a.time.updated)
30
.map((x) => {
31
const date = new Date(x.time.updated)
32
let category = date.toDateString()
0 commit comments