diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-07-12 21:53:06 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-07-12 21:53:06 -0700 |
commit | c6eff59c445017066cae8d2706521a694ef16a23 (patch) | |
tree | 3ecfb49dd0bc3ba20a78b685e503776f89dbf810 /extension/react-app/src/pages | |
parent | d78cb7b1e09bb9ff22fc9e3323ec3b18e03dbcbf (diff) | |
download | sncontinue-c6eff59c445017066cae8d2706521a694ef16a23.tar.gz sncontinue-c6eff59c445017066cae8d2706521a694ef16a23.tar.bz2 sncontinue-c6eff59c445017066cae8d2706521a694ef16a23.zip |
persist state and reconnect automatically
Diffstat (limited to 'extension/react-app/src/pages')
-rw-r--r-- | extension/react-app/src/pages/gui.tsx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/extension/react-app/src/pages/gui.tsx b/extension/react-app/src/pages/gui.tsx index b9382bd1..4ff260fa 100644 --- a/extension/react-app/src/pages/gui.tsx +++ b/extension/react-app/src/pages/gui.tsx @@ -262,7 +262,6 @@ function GUI(props: GUIProps) { const onStepUserInput = (input: string, index: number) => { if (!client) return; - console.log("Sending step user input", input, index); client.sendStepUserInput(input, index); }; |