From b80609a0276c2ef138701ad60a06c1d9c38ac83c Mon Sep 17 00:00:00 2001 From: Val Alexander Date: Tue, 7 Apr 2026 08:03:38 -0500 Subject: [PATCH] Remove double-click project rename from sidebar - Stop starting inline project edit on double-click - Preserve sidebar row interaction for project items --- apps/web/src/components/Sidebar.tsx | 7 ------- 1 file changed, 7 deletions(-) diff --git a/apps/web/src/components/Sidebar.tsx b/apps/web/src/components/Sidebar.tsx index 85af274f..be6cd32a 100644 --- a/apps/web/src/components/Sidebar.tsx +++ b/apps/web/src/components/Sidebar.tsx @@ -1343,13 +1343,6 @@ export default function Sidebar() { ? { color: isDark ? pColor.textDark : pColor.text } : undefined } - onDoubleClick={(e) => { - e.stopPropagation(); - startProjectEditing({ - projectId: project.id, - title: project.name, - }); - }} > {project.name}