Skip to content

Commit

Permalink
Resolve import errors
Browse files Browse the repository at this point in the history
  • Loading branch information
porink0424 committed Apr 24, 2024
1 parent 9499cdd commit 1da112b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion optuna_dashboard/ts/components/GraphContour.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import {
import blue from "@mui/material/colors/blue"
import * as plotly from "plotly.js-dist-min"
import React, { FC, useEffect, useMemo, useState } from "react"
import { useGraphComponentState } from "ts/hooks/useGraphComponentState"
import { useGraphComponentState } from "../hooks/useGraphComponentState"
import { SearchSpaceItem, StudyDetail, Trial } from "ts/types/optuna"
import { PlotType } from "../apiClient"
import { getAxisInfo } from "../graphUtil"
Expand Down
2 changes: 1 addition & 1 deletion optuna_dashboard/ts/components/GraphEdf.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Box, Typography, useTheme } from "@mui/material"
import * as plotly from "plotly.js-dist-min"
import React, { FC, useEffect, useMemo } from "react"
import { useGraphComponentState } from "ts/hooks/useGraphComponentState"
import { useGraphComponentState } from "../hooks/useGraphComponentState"
import { StudyDetail, Trial } from "ts/types/optuna"
import { CompareStudiesPlotType, getCompareStudiesPlotAPI } from "../apiClient"
import { useBackendRender, usePlotlyColorTheme } from "../state"
Expand Down
2 changes: 1 addition & 1 deletion optuna_dashboard/ts/components/GraphParallelCoordinate.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
} from "@mui/material"
import * as plotly from "plotly.js-dist-min"
import React, { FC, ReactNode, useEffect, useState } from "react"
import { useGraphComponentState } from "ts/hooks/useGraphComponentState"
import { useGraphComponentState } from "../hooks/useGraphComponentState"
import { SearchSpaceItem, StudyDetail, Trial } from "ts/types/optuna"
import { PlotType } from "../apiClient"
import { usePlot } from "../hooks/usePlot"
Expand Down
2 changes: 1 addition & 1 deletion optuna_dashboard/ts/components/GraphRank.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
} from "@mui/material"
import * as plotly from "plotly.js-dist-min"
import React, { FC, useEffect, useState } from "react"
import { useGraphComponentState } from "ts/hooks/useGraphComponentState"
import { useGraphComponentState } from "../hooks/useGraphComponentState"
import { SearchSpaceItem, StudyDetail, Trial } from "ts/types/optuna"
import { PlotType } from "../apiClient"
import { getAxisInfo, makeHovertext } from "../graphUtil"
Expand Down

0 comments on commit 1da112b

Please sign in to comment.