diff options
| -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);      } | 
