diff --git a/client/src/redux/index.js b/client/src/redux/index.js index 64802f255f..d7e5a668c6 100644 --- a/client/src/redux/index.js +++ b/client/src/redux/index.js @@ -296,7 +296,6 @@ export const reducer = handleActions( if (challArray) { submitedchallneges = challArray; } - console.log(...submitedchallneges); const { appUsername } = state; return { ...state, diff --git a/client/src/redux/settings/update-legacy-certificate-saga.js b/client/src/redux/settings/update-legacy-certificate-saga.js index fae649c5c3..8a1b9c8e0a 100644 --- a/client/src/redux/settings/update-legacy-certificate-saga.js +++ b/client/src/redux/settings/update-legacy-certificate-saga.js @@ -27,7 +27,6 @@ function* updateLegacyCertSaga({ const { data: response } = yield call(putUpdateLegacyCert, body); yield put(submitComplete({ challArray: reduxShape })); yield put(createFlashMessage(response)); - console.log(response); } catch (e) { yield put(updateLegacyCertError(e)); yield put(createFlashMessage(reallyWeirdErrorMessage)); diff --git a/client/src/templates/Challenges/utils/frame.js b/client/src/templates/Challenges/utils/frame.js index 0e76da880e..c022071657 100644 --- a/client/src/templates/Challenges/utils/frame.js +++ b/client/src/templates/Challenges/utils/frame.js @@ -2,7 +2,6 @@ import { toString, flow } from 'lodash'; // 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 -// console.log const mainId = 'fcc-main-frame'; // the test frame is responsible for running the assert tests const testId = 'fcc-test-frame';