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;
|
isFirstRender.current = false;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
console.log('--------- DEBUOUNCE');
|
|
||||||
return callBack();
|
return callBack();
|
||||||
},
|
},
|
||||||
delay,
|
delay,
|
||||||
@@ -43,7 +42,6 @@ export const SearchField = ({ value, onSearch }: Props) => {
|
|||||||
}}
|
}}
|
||||||
placeholder="Search Grafana plugins"
|
placeholder="Search Grafana plugins"
|
||||||
onChange={(value) => {
|
onChange={(value) => {
|
||||||
console.log('--------- ONCHANGE', value);
|
|
||||||
setQuery(value);
|
setQuery(value);
|
||||||
}}
|
}}
|
||||||
width={46}
|
width={46}
|
||||||
|
|||||||
Reference in New Issue
Block a user