Chore: Remove accidental console.log statements (#66725)

chore: remove accidental console.log statements
This commit is contained in:
Levente Balogh
2023-04-18 09:59:11 +02:00
committed by GitHub
parent cdb49887d8
commit 652fd8889e

View File

@@ -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}