From 304f0650c4071951cbdc067a47e87eb3c0d01fe3 Mon Sep 17 00:00:00 2001 From: Brooklyn Nicholson Date: Sun, 28 Jun 2026 14:13:36 -0500 Subject: [PATCH] style(desktop): tighten pickProjectFolder comment --- apps/desktop/src/store/projects.ts | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/apps/desktop/src/store/projects.ts b/apps/desktop/src/store/projects.ts index 241898cc11a..3f283a8334f 100644 --- a/apps/desktop/src/store/projects.ts +++ b/apps/desktop/src/store/projects.ts @@ -733,12 +733,9 @@ export async function copyPath(path: null | string): Promise { } } -// Pick a folder for a project. Routes through the remote-aware folder picker -// (selectDesktopPaths): a remote gateway browses the BACKEND filesystem via the -// in-app RemoteFolderPicker — where sessions actually run — while local mode -// uses the native directory dialog. Returns the chosen absolute path, or null -// when cancelled. Seeded with the backend's default cwd on remote so the picker -// opens somewhere useful instead of "/". +// Pick a project folder via the remote-aware picker: a remote gateway browses +// the backend filesystem (seeded at its default cwd) where sessions run; local +// mode opens the native dialog. Returns the absolute path, or null if cancelled. export async function pickProjectFolder(): Promise { try { const defaultPath = isDesktopFsRemoteMode() ? (await desktopDefaultCwd())?.cwd : undefined