Skip to content

Commit

Permalink
fix: inline diff interactive input invalid (#4080)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ricbet authored Oct 11, 2024
1 parent 4e7ad51 commit 1197c3a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { AINativeConfigService, PreferenceService } from '@opensumi/ide-core-browser';
import { AINativeConfigService, IAIInlineChatService, PreferenceService } from '@opensumi/ide-core-browser';
import { Disposable, IDisposable } from '@opensumi/ide-core-common';
import {
AIInlineChatContentWidgetId,
Expand Down Expand Up @@ -46,7 +46,7 @@ export class InlineChatEditorController extends BaseAIMonacoEditorController {
}

private get aiInlineChatService(): AIInlineChatService {
return this.injector.get(AIInlineChatService);
return this.injector.get(IAIInlineChatService);
}

private get inlineChatFeatureRegistry(): InlineChatFeatureRegistry {
Expand Down

0 comments on commit 1197c3a

Please sign in to comment.