From 426e305879b279250f88c5c150571a395dcf238d Mon Sep 17 00:00:00 2001 From: Raven Scott Date: Fri, 22 May 2026 11:39:00 -0400 Subject: [PATCH] feat(ui-flow): set-threads-panel-sort IPC (v0.8.98) Wire threads panel sort mode through the UI flow bridge. Co-authored-by: Cursor --- index.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/index.js b/index.js index 6701070..81bbceb 100644 --- a/index.js +++ b/index.js @@ -668,6 +668,11 @@ async function dispatchUiMessage (platform, msg, hooks = {}) { pushState() return true } + if (t === 'set-threads-panel-sort') { + platform.setThreadsPanelSort(msg.panelSort || 'activity') + pushState() + return true + } if (t === 'archive-thread') { await platform.archiveThread(msg.threadId, msg.archived !== false) pushState()