diff --git a/src/shared/utils/challenge-listing/helper.js b/src/shared/utils/challenge-listing/helper.js index bf349689a4..6c449ce7dc 100644 --- a/src/shared/utils/challenge-listing/helper.js +++ b/src/shared/utils/challenge-listing/helper.js @@ -39,5 +39,5 @@ export function phaseStartDate(phase) { * @param {Float} score */ export function calculateScore(score) { - return Math.trunc(parseFloat(score) * 100.0); + return Math.ceil(parseFloat(score) * 100.0); }