Skip to content

Commit

Permalink
Edit: do not inject responsePrefix on typewriter.update()
Browse files Browse the repository at this point in the history
  • Loading branch information
abeatrix committed May 23, 2024
1 parent adcc0d8 commit a2a0164
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vscode/src/edit/provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export class EditProvider {
multiplexer.sub(responseTopic, {
onResponse: async (content: string) => {
text += content
typewriter.update(responsePrefix + text)
typewriter.update(text)
return Promise.resolve()
},
onTurnComplete: async () => {
Expand Down

0 comments on commit a2a0164

Please sign in to comment.