diff --git a/src/controllers/api/statuses.ts b/src/controllers/api/statuses.ts index 6d61c76c..4e8d051f 100644 --- a/src/controllers/api/statuses.ts +++ b/src/controllers/api/statuses.ts @@ -258,7 +258,7 @@ const contextController: AppController = async (c) => { const [ancestors, descendants] = await Promise.all([ renderStatuses(ancestorEvents), - renderStatuses(descendantEvents), + renderStatuses(descendantEvents.reverse()), ]); return c.json({ ancestors, descendants });