fix: remove logs

This commit is contained in:
Ahmad Abdolsaheb
2019-03-28 11:48:38 +03:00
committed by Mrugesh Mohapatra
parent bc099d4971
commit c359662f85
3 changed files with 0 additions and 3 deletions

View File

@ -296,7 +296,6 @@ export const reducer = handleActions(
if (challArray) { if (challArray) {
submitedchallneges = challArray; submitedchallneges = challArray;
} }
console.log(...submitedchallneges);
const { appUsername } = state; const { appUsername } = state;
return { return {
...state, ...state,

View File

@ -27,7 +27,6 @@ function* updateLegacyCertSaga({
const { data: response } = yield call(putUpdateLegacyCert, body); const { data: response } = yield call(putUpdateLegacyCert, body);
yield put(submitComplete({ challArray: reduxShape })); yield put(submitComplete({ challArray: reduxShape }));
yield put(createFlashMessage(response)); yield put(createFlashMessage(response));
console.log(response);
} catch (e) { } catch (e) {
yield put(updateLegacyCertError(e)); yield put(updateLegacyCertError(e));
yield put(createFlashMessage(reallyWeirdErrorMessage)); yield put(createFlashMessage(reallyWeirdErrorMessage));

View File

@ -2,7 +2,6 @@ import { toString, flow } from 'lodash';
// we use two different frames to make them all essentially pure functions // we use two different frames to make them all essentially pure functions
// main iframe is responsible rendering the preview and is where we proxy the // main iframe is responsible rendering the preview and is where we proxy the
// console.log
const mainId = 'fcc-main-frame'; const mainId = 'fcc-main-frame';
// the test frame is responsible for running the assert tests // the test frame is responsible for running the assert tests
const testId = 'fcc-test-frame'; const testId = 'fcc-test-frame';