Skip to content

Commit 09c514e

Browse files
Fix lint
1 parent 99ae8de commit 09c514e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

optuna_dashboard/ts/components/GraphTimeline.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ export const GraphTimeline: FC<{
2020
if (useBackendRender()) {
2121
return <GraphTimelineBackend study={study} />
2222
} else {
23-
return <PlotTimeline study={studyDetailToStudy(study)} colorTheme={colorTheme} />
23+
return (
24+
<PlotTimeline study={studyDetailToStudy(study)} colorTheme={colorTheme} />
25+
)
2426
}
2527
}
2628

0 commit comments

Comments
 (0)