Skip to content

Commit 02635ff

Browse files
committed
ci: versioning
Signed-off-by: Rakib Ansary <[email protected]>
1 parent 9a490c3 commit 02635ff

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"lint:js": "./node_modules/.bin/eslint --ext .js,.jsx .",
3232
"test": "npm run lint && npm run jest"
3333
},
34-
"version": "1.2.15",
34+
"version": "1.2.16",
3535
"dependencies": {
3636
"auth0-js": "^6.8.4",
3737
"config": "^3.2.0",

src/actions/challenge.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -290,10 +290,12 @@ function fetchCheckpointsDone(tokenV2, challengeId) {
290290
// challengeId: String(challengeId),
291291
// }));
292292

293-
return {
293+
return Promise.resolve({
294294
challengeId: String(challengeId),
295-
checkpoints: [],
296-
};
295+
checkpoints: {
296+
checkpointResults: [],
297+
},
298+
});
297299
}
298300

299301
/**

0 commit comments

Comments
 (0)