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) {
|
||||
submitedchallneges = challArray;
|
||||
}
|
||||
console.log(...submitedchallneges);
|
||||
const { appUsername } = state;
|
||||
return {
|
||||
...state,
|
||||
|
@ -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));
|
||||
|
@ -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';
|
||||
|
Reference in New Issue
Block a user