mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Chore: Remove accidental console.log statements (#66725)
chore: remove accidental console.log statements
This commit is contained in:
@@ -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}
|
||||
|
||||
Reference in New Issue
Block a user