From 652fd8889efbb3578f62a7e6bff2b2d6becb1c28 Mon Sep 17 00:00:00 2001 From: Levente Balogh Date: Tue, 18 Apr 2023 09:59:11 +0200 Subject: [PATCH] Chore: Remove accidental console.log statements (#66725) chore: remove accidental console.log statements --- public/app/features/plugins/admin/components/SearchField.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/public/app/features/plugins/admin/components/SearchField.tsx b/public/app/features/plugins/admin/components/SearchField.tsx index 64866968616..c251f34b1cc 100644 --- a/public/app/features/plugins/admin/components/SearchField.tsx +++ b/public/app/features/plugins/admin/components/SearchField.tsx @@ -20,7 +20,6 @@ const useDebounceWithoutFirstRender = (callBack: () => any, delay = 0, deps: Rea isFirstRender.current = false; return; } - console.log('--------- DEBUOUNCE'); return callBack(); }, delay, @@ -43,7 +42,6 @@ export const SearchField = ({ value, onSearch }: Props) => { }} placeholder="Search Grafana plugins" onChange={(value) => { - console.log('--------- ONCHANGE', value); setQuery(value); }} width={46}