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 | 9296105248b522cfdf7884748ca4be8375657c0b (patch) | |
tree | d051f68372572d7327ff6912928648da8b3a3662 /extension/react-app/src/components | |
parent | b3ab5bda368fcae690837f9ce8062dc7f17c6472 (diff) | |
parent | 9558a3602c8678dacd3087bf6512b1bc4c96bc22 (diff) | |
download | sncontinue-9296105248b522cfdf7884748ca4be8375657c0b.tar.gz sncontinue-9296105248b522cfdf7884748ca4be8375657c0b.tar.bz2 sncontinue-9296105248b522cfdf7884748ca4be8375657c0b.zip |
Merge pull request #243 from continuedev/reconnect-persist-state
Reconnect persist state
Diffstat (limited to 'extension/react-app/src/components')
-rw-r--r-- | extension/react-app/src/components/ComboBox.tsx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/extension/react-app/src/components/ComboBox.tsx b/extension/react-app/src/components/ComboBox.tsx index ac994b0a..7d6541c7 100644 --- a/extension/react-app/src/components/ComboBox.tsx +++ b/extension/react-app/src/components/ComboBox.tsx @@ -331,7 +331,6 @@ const ComboBox = React.forwardRef((props: ComboBoxProps, ref) => { ) { (event.nativeEvent as any).preventDownshiftDefault = true; } else if (event.key === "ArrowUp") { - console.log("OWJFOIJO"); if (positionInHistory == 0) return; else if ( positionInHistory == history.length && |