From cf576bca8d5b904c90c6e1f6948ce46f0b2b7327 Mon Sep 17 00:00:00 2001 From: Kian Jones <11655409+kianjones9@users.noreply.github.com> Date: Thu, 19 Mar 2026 10:30:19 -0700 Subject: [PATCH] feat(resume): sort conversations by most recent activity (#1444) --- src/cli/components/ConversationSelector.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/cli/components/ConversationSelector.tsx b/src/cli/components/ConversationSelector.tsx index a7537a6..6a5fab7 100644 --- a/src/cli/components/ConversationSelector.tsx +++ b/src/cli/components/ConversationSelector.tsx @@ -272,6 +272,8 @@ export function ConversationSelector({ agent_id: agentId, limit: FETCH_PAGE_SIZE, ...(afterCursor && { after: afterCursor }), + order: "desc", + order_by: "last_run_completion", }); // Enrich conversations with message data in parallel