From 22788fb044a09865ed746db632cc894628f224c8 Mon Sep 17 00:00:00 2001 From: Michael Freno Date: Sun, 4 Jan 2026 22:10:54 -0500 Subject: [PATCH] some weird caching issues in dev made this off --- src/routes/blog/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/blog/index.tsx b/src/routes/blog/index.tsx index d054556..94166fb 100644 --- a/src/routes/blog/index.tsx +++ b/src/routes/blog/index.tsx @@ -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;