diff --git a/optuna_dashboard/static/components/GraphParetoFront.tsx b/optuna_dashboard/static/components/GraphParetoFront.tsx index a1bbd040..d8bcb3f3 100644 --- a/optuna_dashboard/static/components/GraphParetoFront.tsx +++ b/optuna_dashboard/static/components/GraphParetoFront.tsx @@ -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(