Change resetTask to clearTask

This commit is contained in:
Saoud Rizwan
2024-07-09 15:11:53 -04:00
parent 4310d82d27
commit caca0ca606
2 changed files with 4 additions and 4 deletions

View File

@@ -37,7 +37,7 @@ export function activate(context: vscode.ExtensionContext) {
vscode.commands.registerCommand("claude-dev.plusButtonTapped", async () => {
const message = "claude-dev.plusButtonTapped!"
//vscode.window.showInformationMessage(message)
await provider.resetTask()
await provider.clearTask()
await provider.postStateToWebview()
await provider.postMessageToWebview({ type: "action", action: "plusButtonTapped"})
})