Skip to content

Commit

Permalink
chore: ideDoneStreaming -> ideIsChatStreaming
Browse files Browse the repository at this point in the history
  • Loading branch information
alashchev17 committed Oct 28, 2024
1 parent 1c12c86 commit 905b7e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sidebar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import {
type PatchResult,
ideChatPageChange,
ideEscapeKeyPressed,
ideDoneStreaming,
ideIsChatStreaming,
} from "refact-chat-js/dist/events";
import { basename, join } from "path";
import { diff_paste_back } from "./chatTab";
Expand Down Expand Up @@ -560,7 +560,7 @@ export class PanelWebview implements vscode.WebviewViewProvider {
return this.handleCurrentChatPage(e.payload);
}

if(ideDoneStreaming.match(e)) {
if(ideIsChatStreaming.match(e)) {
return this.handleStreamingChange(e.payload);
}

Expand Down

0 comments on commit 905b7e2

Please sign in to comment.