aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorShravya Ramesh <shravs1208@gmail.com>2021-03-11 08:58:04 -0800
committerShravya Ramesh <shravs1208@gmail.com>2021-03-11 08:58:04 -0800
commitb6fa3c9c58c62c3fcb2462a03fa0fffb42d48b35 (patch)
tree878ec9b55be6b91fa51d12c535c8ded78f1339fa /src
parentc17bd1e936409d32dd272fb13856e8b7eb98d2dc (diff)
removed useless console log
Diffstat (limited to 'src')
-rw-r--r--src/components/search/SearchCategories.tsx1
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();