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}