Merge pull request #7533 from ahstro/fix/hikes-question-flash

Don't flash next question before video in hikes
This commit is contained in:
Rex Schrader
2016-03-14 21:37:39 -07:00

View File

@ -80,7 +80,7 @@ export default handleActions(
[types.goToNextHike]: state => ({
...state,
currentHike: findNextHikeName(state.hikes, state.currentHike),
showQuestions: false,
shouldShowQuestions: false,
currentQuestion: 1,
mouse: [ 0, 0 ]
}),