From e811b3a6135372a01f12b20a66f156e9af57f8b4 Mon Sep 17 00:00:00 2001 From: Jeremy Kauffman Date: Thu, 9 Nov 2017 17:01:22 -0500 Subject: [PATCH] remove console statements --- ui/js/actions/search.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/ui/js/actions/search.js b/ui/js/actions/search.js index ab6f1b765..80b014b73 100644 --- a/ui/js/actions/search.js +++ b/ui/js/actions/search.js @@ -33,7 +33,6 @@ export function doSearch(rawQuery) { : Promise.reject(new Error(response.statusText)); }) .then(data => { - console.log(data); let uris = []; let actions = []; @@ -56,7 +55,6 @@ export function doSearch(rawQuery) { dispatch(batchActions(...actions)); }) .catch(err => { - console.log(err); dispatch({ type: types.SEARCH_CANCELLED, });