This commit is contained in:
crusader 2017-08-14 19:59:44 +09:00
parent f56243ca10
commit 934652ea83

View File

@ -13,6 +13,9 @@ const reducer: ReducersMapObject = {
}; };
}, },
[SigninActionTypes.REQUEST_FAILURE]: (state: SigninState = signinDefaultState, action: Action<Error>): SigninState => { [SigninActionTypes.REQUEST_FAILURE]: (state: SigninState = signinDefaultState, action: Action<Error>): SigninState => {
if (action.error.name === 'SignInPwNotMatchException') {
//
}
return state; return state;
}, },
}; };