Change let to const for normalizedValues

This commit is contained in:
Henry Cui
2021-02-28 00:40:54 +09:00
parent c4751307f1
commit 2ef70332b0
@@ -44,7 +44,7 @@ const plotParetoFront = (study: StudyDetail) => {
return
}
let normalizedValues: number[][] = []
const normalizedValues: number[][] = []
completedTrials.forEach((t) => {
if (t.values && t.values.length == dim) {
const trialValues = t.values.map(