Skip to content

Commit 0e6baac

Browse files
authored
Fix service deps (#280079)
Copilot! Fix #279973
1 parent 72203f1 commit 0e6baac

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/vs/workbench/contrib/chat/browser/chatSetup/chatSetupContributions.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -592,10 +592,10 @@ export class ChatSetupContribution extends Disposable implements IWorkbenchContr
592592

593593
class ChatSetupExtensionUrlHandler implements IExtensionUrlHandlerOverride {
594594
constructor(
595-
private readonly productService: IProductService,
596-
private readonly commandService: ICommandService,
597-
private readonly telemetryService: ITelemetryService,
598-
private readonly chatModeService: IChatModeService,
595+
@IProductService private readonly productService: IProductService,
596+
@ICommandService private readonly commandService: ICommandService,
597+
@ITelemetryService private readonly telemetryService: ITelemetryService,
598+
@IChatModeService private readonly chatModeService: IChatModeService,
599599
) { }
600600

601601
canHandleURL(url: URI): boolean {

0 commit comments

Comments
 (0)