diff --git a/src/XYZChart.tsx b/src/XYZChart.tsx index 7e73d0e..3bb9e77 100644 --- a/src/XYZChart.tsx +++ b/src/XYZChart.tsx @@ -4,7 +4,7 @@ import { useTheme2 } from '@grafana/ui'; import { XYZChartOptions as XYZChartOptions } from 'models.gen'; import { preparePlotByDims, preparePlotByExplicitSeries } from 'utils'; -interface Props extends PanelProps {} +interface Props extends PanelProps { } export const XYZChart: React.FC = (props) => { const theme = useTheme2(); @@ -46,7 +46,7 @@ export const XYZChart: React.FC = (props) => { return ( <> - { !isMounted ?
: () } + {!isMounted ?
: (
)} - ); + ); };