diff options
| author | Shreya Keshive <[email protected]> | 2025-08-15 00:07:06 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-08-15 00:07:06 +0000 |
| commit | db347eeee88a7610372915c94b1ab5616aa9ce3d (patch) | |
| tree | fbbdcbe7f6eb6740284bace282edb1d44ba12b91 /packages/core/src/ide/ide-client.ts | |
| parent | cf7e6ff52d6b947a1b59779ddb39d265beebafab (diff) | |
IDE integration Gemini command multi-folder support + bump version (#6265)
Co-authored-by: matt korwel <[email protected]>
Diffstat (limited to 'packages/core/src/ide/ide-client.ts')
| -rw-r--r-- | packages/core/src/ide/ide-client.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/core/src/ide/ide-client.ts b/packages/core/src/ide/ide-client.ts index 810e82e0..5ec0bb5c 100644 --- a/packages/core/src/ide/ide-client.ts +++ b/packages/core/src/ide/ide-client.ts @@ -123,7 +123,7 @@ export class IdeClient { this.setState( IDEConnectionStatus.Disconnected, - `Failed to connect to IDE companion extension for ${this.currentIdeDisplayName}. Please ensure the extension is running and try restarting your terminal. To install the extension, run /ide install.`, + `Failed to connect to IDE companion extension for ${this.currentIdeDisplayName}. Please ensure the extension is running. To install the extension, run /ide install.`, true, ); } @@ -261,7 +261,7 @@ export class IdeClient { if (ideWorkspacePath === undefined) { return { isValid: false, - error: `Failed to connect to IDE companion extension for ${currentIdeDisplayName}. Please ensure the extension is running and try refreshing your terminal. To install the extension, run /ide install.`, + error: `Failed to connect to IDE companion extension for ${currentIdeDisplayName}. Please ensure the extension is running. To install the extension, run /ide install.`, }; } |
