From d76ed9323a5d498c8acf9d1e441ccb9bd953e7b3 Mon Sep 17 00:00:00 2001 From: keisuke-umezawa Date: Tue, 18 Jul 2023 16:30:52 +0900 Subject: [PATCH] Fix typo --- optuna_dashboard/ts/components/GraphHistory.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/optuna_dashboard/ts/components/GraphHistory.tsx b/optuna_dashboard/ts/components/GraphHistory.tsx index 5f428385..73cf2f09 100644 --- a/optuna_dashboard/ts/components/GraphHistory.tsx +++ b/optuna_dashboard/ts/components/GraphHistory.tsx @@ -62,7 +62,7 @@ export const GraphHistory: FC<{ }) useEffect(() => { - plotHistoryMultiStudies( + plotHistory( historyPlotInfos, selected, xAxis, @@ -70,7 +70,7 @@ export const GraphHistory: FC<{ theme.palette.mode, markerSize ) - }, [studies, selected, logScale, xAxis, theme.palette.mode]) + }, [studies, selected, logScale, xAxis, theme.palette.mode, markerSize]) const handleObjectiveChange = (event: SelectChangeEvent) => { setTarget(event.target.value)