diff options
| author | Shreya Keshive <[email protected]> | 2025-08-11 18:09:47 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-08-11 22:09:47 +0000 |
| commit | c7fd4c4a962d6e790214e6a0a9cd9b029b85f4e4 (patch) | |
| tree | e047aef8d103bc27a184577be2cf1dc40d796c38 /packages/core/src | |
| parent | 94b619994305895e429d91f47a125682fbf62bc5 (diff) | |
Start IDE connection after config initialization (#6018)
Diffstat (limited to 'packages/core/src')
| -rw-r--r-- | packages/core/src/config/config.ts | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/packages/core/src/config/config.ts b/packages/core/src/config/config.ts index a06c4505..d02e4153 100644 --- a/packages/core/src/config/config.ts +++ b/packages/core/src/config/config.ts @@ -322,10 +322,6 @@ export class Config { this.folderTrust = params.folderTrust ?? false; this.ideMode = params.ideMode ?? false; this.ideClient = IdeClient.getInstance(); - if (this.ideMode && this.ideModeFeature) { - this.ideClient.connect(); - logIdeConnection(this, new IdeConnectionEvent(IdeConnectionType.START)); - } this.loadMemoryFromIncludeDirectories = params.loadMemoryFromIncludeDirectories ?? false; this.chatCompression = params.chatCompression; |
