File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2,11 +2,11 @@ import { useEffect } from 'react';
22import { useChartLegend } from '@scality/core-ui/dist/components/chartlegend/ChartLegendWrapper' ;
33import { Serie } from '@scality/core-ui/dist/components/linetimeseriechart/linetimeseriechart.component' ;
44
5- interface SymmetricalSeries {
5+ type SymmetricalSeries = {
66 above : Serie [ ] ;
77 below : Serie [ ] ;
8- }
9- type ChartLegendRegistation = {
8+ } ;
9+ type ChartLegendRegistration = {
1010 chartId : string ;
1111 additionalNames ?: string [ ] ;
1212} & (
@@ -25,7 +25,7 @@ export const useChartLegendRegistration = ({
2525 series,
2626 isSymmetrical,
2727 additionalNames,
28- } : ChartLegendRegistation ) => {
28+ } : ChartLegendRegistration ) => {
2929 const { register } = useChartLegend ( ) ;
3030
3131 useEffect ( ( ) => {
You can’t perform that action at this time.
0 commit comments