diff options
| author | Shreya Keshive <[email protected]> | 2025-08-07 17:25:06 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-08-07 21:25:06 +0000 |
| commit | f1663d9615edee825b4f3e077183aeb4c781361b (patch) | |
| tree | d7fbaa0a893106221d054cfbdc6890f56226f347 /packages/vscode-ide-companion/src/extension.ts | |
| parent | 4d4eacfc40f87ecc991aaecc12c046d49654425c (diff) | |
README + reduce required VS Code version for companion extension (#5719)
Diffstat (limited to 'packages/vscode-ide-companion/src/extension.ts')
| -rw-r--r-- | packages/vscode-ide-companion/src/extension.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/vscode-ide-companion/src/extension.ts b/packages/vscode-ide-companion/src/extension.ts index 08389731..18217140 100644 --- a/packages/vscode-ide-companion/src/extension.ts +++ b/packages/vscode-ide-companion/src/extension.ts @@ -42,7 +42,7 @@ export async function activate(context: vscode.ExtensionContext) { updateWorkspacePath(context); const diffContentProvider = new DiffContentProvider(); - const diffManager = new DiffManager(logger, diffContentProvider); + const diffManager = new DiffManager(log, diffContentProvider); context.subscriptions.push( vscode.workspace.onDidCloseTextDocument((doc) => { |
