update front end certification guide handle action in the store solution code to return the state parameter not the defaultState object (#28485)

This commit is contained in:
Omereshone Kelvin Oghenerhoro
2019-03-08 19:35:02 +01:00
committed by Randell Dawson
parent 3eab20af32
commit 21d2698a44

View File

@ -20,7 +20,7 @@ const reducer = (state = defaultState, action) => {
login: true
}
} else {
return defaultState
return state
};
// change code above this line
};