summaryrefslogtreecommitdiffstats
path: root/components/Search.js
diff options
context:
space:
mode:
Diffstat (limited to 'components/Search.js')
-rw-r--r--components/Search.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/components/Search.js b/components/Search.js
index 63c467e..0ce136e 100644
--- a/components/Search.js
+++ b/components/Search.js
@@ -14,7 +14,6 @@ function routeToItem(item) {
function BasicAutocomplete(props) {
const { items, onChange } = props;
- console.log(props);
return (
<Downshift onChange={routeToItem} itemToString={item => item.title}>
{({ getInputProps, getItemProps, isOpen, inputValue, selectedItem, highlightedIndex }) => (