Skip to content

Commit 531f3ec

Browse files
authored
Merge pull request #199 from PrakashDurlabhji/issue_4516
issue 4516 fix
2 parents 0df81e4 + a3bca94 commit 531f3ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/reducers/challenge.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ function onFetchCheckpointsDone(state, action) {
171171
loadingCheckpoints: false,
172172
};
173173
}
174-
if (state.details && state.details.id === action.payload.challengeId) {
174+
if (state.details && state.details.legacyId === action.payload.challengeId) {
175175
return {
176176
...state,
177177
checkpoints: action.payload.checkpoints,

0 commit comments

Comments
 (0)