summaryrefslogtreecommitdiff
path: root/src/core/components/elements/Navbar/Search.jsx
diff options
context:
space:
mode:
authorRafi Zadanly <zadanlyr@gmail.com>2023-04-28 16:12:46 +0700
committerRafi Zadanly <zadanlyr@gmail.com>2023-04-28 16:12:46 +0700
commit2d9ef5366a35e658bc060d8ff8778dfaa6b68b03 (patch)
tree9ae0b73ae1da3ce9da13348432e187c2946d2d14 /src/core/components/elements/Navbar/Search.jsx
parent3701899613c02e547fecebf62f7105860d1a2b72 (diff)
fix defat sort search
Diffstat (limited to 'src/core/components/elements/Navbar/Search.jsx')
-rw-r--r--src/core/components/elements/Navbar/Search.jsx1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/core/components/elements/Navbar/Search.jsx b/src/core/components/elements/Navbar/Search.jsx
index 8c2ed8d4..54eecf84 100644
--- a/src/core/components/elements/Navbar/Search.jsx
+++ b/src/core/components/elements/Navbar/Search.jsx
@@ -13,7 +13,6 @@ const Search = () => {
const loadSuggestion = useCallback(() => {
if (query && document.activeElement == queryRef.current) {
searchSuggestApi({ query }).then((response) => {
- console.table(response.data.suggestions);
setSuggestions(response.data.suggestions)
})
} else {