Update web-app/src/routes/project/index.tsx

Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com>
This commit is contained in:
Faisal Amir 2025-09-25 10:19:18 +07:00 committed by GitHub
parent d0f62fa634
commit b0bca2ac1f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -124,7 +124,7 @@ function ProjectContent() {
<div className="space-y-3">
{folders
.slice()
.sort((a, b) => a.updated_at - b.updated_at)
.sort((a, b) => b.updated_at - a.updated_at)
.map((folder) => {
const projectThreads = getThreadsForProject(folder.id)
const isExpanded = expandedProjects.has(folder.id)