From 24bcdcde8d72b0a532128916d2938cd6ccd59b46 Mon Sep 17 00:00:00 2001 From: NastiaS Date: Mon, 28 May 2018 16:51:36 +0200 Subject: [PATCH] adjust --- src/reducers/onboarding.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/reducers/onboarding.js b/src/reducers/onboarding.js index 7b6b9aed..da065dac 100644 --- a/src/reducers/onboarding.js +++ b/src/reducers/onboarding.js @@ -162,10 +162,6 @@ const handlers = { }, }), - // ONBOARDING_SET_GENUINE_CHECK_FAIL: (state, { payload: isGenuineFail }) => ({ - // ...state, - // isGenuineFail, - // }), ONBOARDING_SET_DEVICE_TYPE: (state, { payload: isLedgerNano }) => ({ ...state, isLedgerNano, @@ -177,6 +173,5 @@ export default handleActions(handlers, state) export const nextStep = createAction('ONBOARDING_NEXT_STEP') export const prevStep = createAction('ONBOARDING_PREV_STEP') export const jumpStep = createAction('ONBOARDING_JUMP_STEP') -// export const setGenuineCheckFail = createAction('ONBOARDING_SET_GENUINE_CHECK_FAIL') export const updateGenuineCheck = createAction('UPDATE_GENUINE_CHECK') export const isLedgerNano = createAction('ONBOARDING_SET_DEVICE_TYPE')