feat(ui) - url search - removed logs

This commit is contained in:
Shekar Siri 2022-08-17 18:09:09 +02:00
parent a8760279b9
commit 719a29dad8

View file

@ -76,14 +76,12 @@ function SessionSearchQueryParamHandler(props: Props) {
const applyFilterFromQuery = () => {
const entires = getQueryObject(history.location.search);
console.log('entires', entires);
if (entires.length > 0) {
entires.forEach(addFilter);
}
};
useEffect(() => {
console.log('rerender');
applyFilterFromQuery();
}, []);