From a23d652f9f3e27981ce4b6e62f9cd679ae1f6c2d Mon Sep 17 00:00:00 2001 From: Thomas Kranitsas Date: Wed, 29 Mar 2023 16:42:02 +0300 Subject: [PATCH] fix missing return --- src/common/phase-helper.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/common/phase-helper.js b/src/common/phase-helper.js index ce46c38a..f61e3a93 100644 --- a/src/common/phase-helper.js +++ b/src/common/phase-helper.js @@ -178,6 +178,7 @@ class ChallengePhaseHelper { phase.actualEndDate = moment().toDate().toISOString(); } } + return phase; }); }