some weird caching issues in dev made this off

This commit is contained in:
Michael Freno
2026-01-04 22:10:54 -05:00
parent 35259eac8b
commit 22788fb044

View File

@@ -49,7 +49,7 @@ const getPosts = query(async () => {
}
postsQuery += ` GROUP BY p.id, p.title, p.subtitle, p.body, p.banner_photo, p.date, p.published, p.category, p.author_id, p.reads, p.attachments`;
postsQuery += ` ORDER BY p.date ASC;`;
postsQuery += ` ORDER BY p.date DESC;`;
const postsResult = await conn.execute(postsQuery);
const posts = postsResult.rows;