diff options
author | Shravya Ramesh <shravs1208@gmail.com> | 2021-03-11 08:58:04 -0800 |
---|---|---|
committer | Shravya Ramesh <shravs1208@gmail.com> | 2021-03-11 08:58:04 -0800 |
commit | b6fa3c9c58c62c3fcb2462a03fa0fffb42d48b35 (patch) | |
tree | 878ec9b55be6b91fa51d12c535c8ded78f1339fa | |
parent | c17bd1e936409d32dd272fb13856e8b7eb98d2dc (diff) |
removed useless console log
-rw-r--r-- | src/components/search/SearchCategories.tsx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/components/search/SearchCategories.tsx b/src/components/search/SearchCategories.tsx index c3c4c518..f016a806 100644 --- a/src/components/search/SearchCategories.tsx +++ b/src/components/search/SearchCategories.tsx @@ -13,7 +13,6 @@ const SearchCategories: React.FC = () => { useEffect(() => { const loadButtons = async () => { const localButtons = await getButtons(); - console.log('localButtons: ', localButtons); await setButtons(localButtons); }; loadButtons(); |