diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-06-03 14:20:21 -0400 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-06-03 14:20:21 -0400 |
commit | b8067876bc5dd425d491863bd5338f325fea35ed (patch) | |
tree | 4c3167043c2bffaff5931b77e080a8f84ad52c96 /extension/react-app/src/hooks | |
parent | 4f3ceee573268fbe9db80fea372198523b5757a6 (diff) | |
download | sncontinue-b8067876bc5dd425d491863bd5338f325fea35ed.tar.gz sncontinue-b8067876bc5dd425d491863bd5338f325fea35ed.tar.bz2 sncontinue-b8067876bc5dd425d491863bd5338f325fea35ed.zip |
error handling and step retry
Diffstat (limited to 'extension/react-app/src/hooks')
-rw-r--r-- | extension/react-app/src/hooks/useContinueGUIProtocol.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/extension/react-app/src/hooks/useContinueGUIProtocol.ts b/extension/react-app/src/hooks/useContinueGUIProtocol.ts index a3a1d0c9..f27895fb 100644 --- a/extension/react-app/src/hooks/useContinueGUIProtocol.ts +++ b/extension/react-app/src/hooks/useContinueGUIProtocol.ts @@ -44,6 +44,10 @@ class ContinueGUIClientProtocol extends AbstractContinueGUIClientProtocol { } }); } + + retryAtIndex(index: number) { + this.messenger.send("retry_at_index", { index }); + } } export default ContinueGUIClientProtocol; |