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/components | |
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/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 && |