Skip to content

Commit

Permalink
fix: rebase error
Browse files Browse the repository at this point in the history
  • Loading branch information
darkskygit committed Apr 10, 2024
1 parent 5f34c56 commit 67e2679
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/backend/server/src/plugins/copilot/controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import {

import { Public } from '../../core/auth';
import { CurrentUser } from '../../core/auth/current-user';
import { ProviderService } from './providers';
import { CopilotProviderService } from './providers';
import { ChatSessionService } from './session';
import { CopilotCapability } from './types';

Expand All @@ -35,7 +35,7 @@ export interface ChatEvent {
export class CopilotController {
constructor(
private readonly chatSession: ChatSessionService,
private readonly provider: ProviderService
private readonly provider: CopilotProviderService
) {}

@Public()
Expand Down

0 comments on commit 67e2679

Please sign in to comment.