Skip to content

Commit c14d6f2

Browse files
Remove unused ts directive
Add ts-ignore directivel: will be fix by refactor of quantile chart
1 parent be67551 commit c14d6f2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ui/src/components/NonSymmetricalQuantileChart.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,6 @@ const NonSymmetricalQuantileChart = ({
101101
// @ts-expect-error - FIXME when you are working on it
102102
yAxisType={yAxisType}
103103
isLegendHidden={isLegendHidden}
104-
// @ts-expect-error - FIXME when you are working on it
105104
isLoading={isLoadingQuantile}
106105
onHover={onHover}
107106
renderTooltipSerie={useCallback(

ui/src/components/SymmetricalQuantileChart.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ const SymmetricalQuantileChart = ({
6969
getBelowQuantileQuery(timeSpanProps, 0.5, devices),
7070
getBelowQuantileQuery(timeSpanProps, 0.9, devices),
7171
],
72+
// @ts-expect-error - FIXME when you are working on it
7273
transformPrometheusDataToSeries: useCallback(
7374
(prometheusResultAbove, prometheusResultBelow) => {
7475
if (!prometheusResultAbove || !prometheusResultBelow) {
@@ -179,11 +180,11 @@ const SymmetricalQuantileChart = ({
179180
);
180181
return (
181182
<LineTemporalChart
183+
// @ts-ignore To be fixed after migration of LineTemporalChart to LineTimeSerieChart
182184
series={seriesQuantile}
183185
height={150}
184186
title={title}
185187
startingTimeStamp={startingTimeStampQuantile}
186-
// @ts-expect-error - FIXME when you are working on it
187188
isLoading={isLoadingQuantile}
188189
yAxisType={'symmetrical'}
189190
onHover={useCallback(

0 commit comments

Comments
 (0)