summaryrefslogtreecommitdiff
path: root/extension/react-app/src/hooks/useContinueGUIProtocol.ts
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-06-12 13:18:16 -0700
committerNate Sesti <sestinj@gmail.com>2023-06-12 13:18:16 -0700
commita13cb867ec0ea831d78e6d928463bd256babced5 (patch)
treea7f16db0f260bc93196fc67e885cbd9054fe91f7 /extension/react-app/src/hooks/useContinueGUIProtocol.ts
parent0851b826c069cbdd1706a4107feb90f0ffa13129 (diff)
downloadsncontinue-a13cb867ec0ea831d78e6d928463bd256babced5.tar.gz
sncontinue-a13cb867ec0ea831d78e6d928463bd256babced5.tar.bz2
sncontinue-a13cb867ec0ea831d78e6d928463bd256babced5.zip
clear history and delete step buttons
Diffstat (limited to 'extension/react-app/src/hooks/useContinueGUIProtocol.ts')
-rw-r--r--extension/react-app/src/hooks/useContinueGUIProtocol.ts8
1 files changed, 8 insertions, 0 deletions
diff --git a/extension/react-app/src/hooks/useContinueGUIProtocol.ts b/extension/react-app/src/hooks/useContinueGUIProtocol.ts
index f27895fb..a8e28fc5 100644
--- a/extension/react-app/src/hooks/useContinueGUIProtocol.ts
+++ b/extension/react-app/src/hooks/useContinueGUIProtocol.ts
@@ -45,9 +45,17 @@ class ContinueGUIClientProtocol extends AbstractContinueGUIClientProtocol {
});
}
+ sendClear() {
+ this.messenger.send("clear_history", {});
+ }
+
retryAtIndex(index: number) {
this.messenger.send("retry_at_index", { index });
}
+
+ deleteAtIndex(index: number) {
+ this.messenger.send("delete_at_index", { index });
+ }
}
export default ContinueGUIClientProtocol;