fix: remove logs
This commit is contained in:
committed by
Mrugesh Mohapatra
parent
bc099d4971
commit
c359662f85
@ -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,
|
||||||
|
@ -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));
|
||||||
|
@ -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';
|
||||||
|
Reference in New Issue
Block a user