chore: generate

This commit is contained in:
opencode-agent[bot]
2026-05-09 03:18:57 +00:00
parent 4d585464f3
commit c0acf5c43f

View File

@@ -130,7 +130,11 @@ export function DialogSessionList() {
const options = createMemo(() => {
const today = new Date().toDateString()
const sessionMap = new Map(sessions().filter((x) => x.parentID === undefined).map((x) => [x.id, x]))
const sessionMap = new Map(
sessions()
.filter((x) => x.parentID === undefined)
.map((x) => [x.id, x]),
)
const searchResult = searchResults()
const displayOrder = searchResult ? orderByRecency(searchResult) : browseOrder()