From a1a1098f52df83d994c373c54bb8063c5c5159c4 Mon Sep 17 00:00:00 2001 From: "Hughes, Lance" Date: Wed, 13 May 2026 19:53:34 -0700 Subject: [PATCH] fix: plus button opens workspace panel instead of file browser In Electron mode, clicking the "+" button was immediately launching the native file dialog. Now it opens the workspace manager panel which provides a richer interface for adding workspaces. --- frontend/src/components/WorkspacePanel.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/WorkspacePanel.tsx b/frontend/src/components/WorkspacePanel.tsx index 6af94ee..55db45f 100644 --- a/frontend/src/components/WorkspacePanel.tsx +++ b/frontend/src/components/WorkspacePanel.tsx @@ -1641,7 +1641,7 @@ export function WorkspacePanel({ }, [waitingInputNotifications]); const handleAddWorkspace = () => { - setShowProjectPicker(true); + setShowWorkspaceManager(true); }; const handleToggleArchivedTasks = () => {