Skip to content

Commit

Permalink
Removed JSON.stringify
Browse files Browse the repository at this point in the history
  • Loading branch information
dngomez committed Aug 23, 2024
1 parent 8889a63 commit 486618d
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions src/helpers/sortNightPlan.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,12 @@ export function sortNightPlan(timeline: any) {
timeline[n_idx][site][entry].plan.nightStats.planScore
),
nToos: 0,
completionFraction: JSON.stringify(
completionFraction:
timeline[n_idx][site][entry].plan.nightStats
.completionFraction
),
programCompletion: JSON.stringify(
timeline[n_idx][site][entry].plan.nightStats.programCompletion
),
.completionFraction,
programCompletion:
timeline[n_idx][site][entry].plan.nightStats
.programCompletion,
},
},
});
Expand Down

0 comments on commit 486618d

Please sign in to comment.