From 712c278642027e831dc61ef3ba77dc139bc25863 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 29 Jan 2026 20:05:46 +0000 Subject: [PATCH] refactor: simplify new tab menu item copy - Change menu text from "+ New tab" to "New" (icon already shows +) - Simplify toast to just "Moved to new tab" https://claude.ai/code/session_01Hy2vYBooPyrF7ZJCodcCav --- src/components/WindowToolbar.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/components/WindowToolbar.tsx b/src/components/WindowToolbar.tsx index 0ce887a..5f6928f 100644 --- a/src/components/WindowToolbar.tsx +++ b/src/components/WindowToolbar.tsx @@ -64,8 +64,8 @@ export function WindowToolbar({ const handleMoveToNewTab = () => { if (!window) return; - const newTabNumber = moveWindowToNewWorkspace(window.id); - toast.success(`Moved to new tab ${newTabNumber}`); + moveWindowToNewWorkspace(window.id); + toast.success("Moved to new tab"); }; const handleEdit = () => { @@ -210,7 +210,8 @@ export function WindowToolbar({ - + New tab + + New {otherWorkspaces.length > 0 && } {otherWorkspaces.map((ws) => (