You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: packages/plugin-bootstrap/src/evaluators/goal.ts
+7-23
Original file line number
Diff line number
Diff line change
@@ -80,34 +80,18 @@ async function handler(
80
80
81
81
// Apply the updates to the goals
82
82
constupdatedGoals=goalsData
83
-
.map((goal: Goal)=>{
83
+
.map((goal: Goal): Goal=>{
84
84
constupdate=updates?.find((u)=>u.id===goal.id);
85
85
if(update){
86
-
constobjectives=goal.objectives;
87
-
88
-
// for each objective in update.objectives, find the objective with the same description in 'objectives' and set the 'completed' value to the update.objectives value
0 commit comments