remove console statements

This commit is contained in:
Jeremy Kauffman 2017-11-09 17:01:22 -05:00
parent 8acb7bd85a
commit e811b3a613

View file

@ -33,7 +33,6 @@ export function doSearch(rawQuery) {
: Promise.reject(new Error(response.statusText)); : Promise.reject(new Error(response.statusText));
}) })
.then(data => { .then(data => {
console.log(data);
let uris = []; let uris = [];
let actions = []; let actions = [];
@ -56,7 +55,6 @@ export function doSearch(rawQuery) {
dispatch(batchActions(...actions)); dispatch(batchActions(...actions));
}) })
.catch(err => { .catch(err => {
console.log(err);
dispatch({ dispatch({
type: types.SEARCH_CANCELLED, type: types.SEARCH_CANCELLED,
}); });