diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-07-22 23:16:51 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-07-22 23:16:51 -0700 |
commit | 8c8f3f546ebfb10b23312e7cb980f16730ccc61f (patch) | |
tree | c27b205cc0298bf2d73da9a1d658a11cd4300c91 /extension/react-app | |
parent | 4d7e72970f770eb49627589fb142c93dfb6fd73b (diff) | |
download | sncontinue-8c8f3f546ebfb10b23312e7cb980f16730ccc61f.tar.gz sncontinue-8c8f3f546ebfb10b23312e7cb980f16730ccc61f.tar.bz2 sncontinue-8c8f3f546ebfb10b23312e7cb980f16730ccc61f.zip |
cleaning
Diffstat (limited to 'extension/react-app')
-rw-r--r-- | extension/react-app/src/components/ComboBox.tsx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/extension/react-app/src/components/ComboBox.tsx b/extension/react-app/src/components/ComboBox.tsx index 22a6d000..fdd1e9b7 100644 --- a/extension/react-app/src/components/ComboBox.tsx +++ b/extension/react-app/src/components/ComboBox.tsx @@ -178,6 +178,9 @@ const ComboBox = React.forwardRef((props: ComboBoxProps, ref) => { }; }) ); + }) + .catch((err) => { + console.error(err); }); return; } @@ -194,10 +197,6 @@ const ComboBox = React.forwardRef((props: ComboBoxProps, ref) => { }); useEffect(() => { - console.log( - "downshiftProps.highlightedIndex", - downshiftProps.highlightedIndex - ); if (downshiftProps.highlightedIndex < 0) { downshiftProps.setHighlightedIndex(0); } |