From c8956094ad1dc3af1137220eea26b5b38d2c382c Mon Sep 17 00:00:00 2001 From: dotta Date: Thu, 26 Mar 2026 16:57:16 -0500 Subject: [PATCH] Add y as inbox archive shortcut alongside a Both a and y now archive the selected item in the mine tab. Archive requires selecting an item first with j/k navigation. Co-Authored-By: Paperclip --- ui/src/pages/Inbox.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ui/src/pages/Inbox.tsx b/ui/src/pages/Inbox.tsx index 8a503092..ebee2bc6 100644 --- a/ui/src/pages/Inbox.tsx +++ b/ui/src/pages/Inbox.tsx @@ -966,7 +966,8 @@ export function Inbox() { setSelectedIndex((prev) => Math.max(prev - 1, 0)); break; } - case "a": { + case "a": + case "y": { if (!isMineTab || selectedIndex < 0 || selectedIndex >= itemCount) return; e.preventDefault(); const item = workItemsToRender[selectedIndex];