remove console statements
This commit is contained in:
parent
8acb7bd85a
commit
e811b3a613
1 changed files with 0 additions and 2 deletions
|
@ -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,
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Reference in a new issue