diff options
author | Nate Sesti <33237525+sestinj@users.noreply.github.com> | 2023-07-12 22:03:40 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-12 22:03:40 -0700 |
commit | c8ea3c2b6efca139e0c1701f39992ea8cc246840 (patch) | |
tree | d59a8f901778bf4e20ef6dcd2b124b3518ef72d8 /extension/react-app/src/pages/gui.tsx | |
parent | d78cb7b1e09bb9ff22fc9e3323ec3b18e03dbcbf (diff) | |
parent | 598b6d44e33a2e57a8fc0e9ddecb8b8753096dbd (diff) | |
download | sncontinue-c8ea3c2b6efca139e0c1701f39992ea8cc246840.tar.gz sncontinue-c8ea3c2b6efca139e0c1701f39992ea8cc246840.tar.bz2 sncontinue-c8ea3c2b6efca139e0c1701f39992ea8cc246840.zip |
Merge pull request #243 from continuedev/reconnect-persist-state
Reconnect persist state
Diffstat (limited to 'extension/react-app/src/pages/gui.tsx')
-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); }; |