Skip to content

Commit 19fa180

Browse files
committed
Revert "fix: try to fix build error in Netlify"
This reverts commit e1c8d5f.
1 parent e1c8d5f commit 19fa180

File tree

1 file changed

+2
-2
lines changed
  • ui/src/design-system/components/plot

1 file changed

+2
-2
lines changed

ui/src/design-system/components/plot/plot.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import classNames from 'classnames'
2-
import PlotlyPlot from 'react-plotly.js'
2+
import _Plot from 'react-plotly.js'
33
import styles from './plot.module.scss'
44
import { PlotProps } from './types'
55

@@ -21,7 +21,7 @@ const Plot = ({
2121
<div
2222
className={classNames(styles.plot, { [styles.round]: data.x.length >= 3 })}
2323
>
24-
<PlotlyPlot
24+
<_Plot
2525
data={[
2626
{
2727
orientation,

0 commit comments

Comments
 (0)