diff --git a/guide/english/certifications/front-end-libraries/redux/handle-an-action-in-the-store/index.md b/guide/english/certifications/front-end-libraries/redux/handle-an-action-in-the-store/index.md index c34dfa2b5d..4890cd2eab 100644 --- a/guide/english/certifications/front-end-libraries/redux/handle-an-action-in-the-store/index.md +++ b/guide/english/certifications/front-end-libraries/redux/handle-an-action-in-the-store/index.md @@ -20,7 +20,7 @@ const reducer = (state = defaultState, action) => { login: true } } else { - return defaultState + return state }; // change code above this line };