@@ -35,7 +35,6 @@ import {
35
35
StyledFormControl ,
36
36
} from './MetricsSummary.styles' ;
37
37
import { useSummary } from './useSummary' ;
38
- import { ScaleType } from '../Charts/DashedLine/DashedLine.interfaces' ;
39
38
40
39
const percentileOptions = [ 'p50' , 'p90' , 'p95' , 'p99' ] ;
41
40
@@ -208,7 +207,6 @@ export const Component = () => {
208
207
data = { [ { id : 'ttft' , data : lineDataByRps . ttft || [ ] } ] }
209
208
threshold = { ttftSLO }
210
209
lineColor = { LineColor . Primary }
211
- yScaleType = { ScaleType . linear }
212
210
/>
213
211
</ GraphContainer >
214
212
</ MiddleColumn >
@@ -227,7 +225,6 @@ export const Component = () => {
227
225
data = { [ { id : 'tpot' , data : lineDataByRps . tpot || [ ] } ] }
228
226
threshold = { tpotSLO }
229
227
lineColor = { LineColor . Secondary }
230
- yScaleType = { ScaleType . linear }
231
228
/>
232
229
</ GraphContainer >
233
230
</ MiddleColumn >
@@ -248,7 +245,6 @@ export const Component = () => {
248
245
] }
249
246
threshold = { timePerRequestSLO }
250
247
lineColor = { LineColor . Tertiary }
251
- yScaleType = { ScaleType . linear }
252
248
/>
253
249
</ GraphContainer >
254
250
</ MiddleColumn >
@@ -269,7 +265,6 @@ export const Component = () => {
269
265
data = { [ { id : 'throughput' , data : lineDataByRps . throughput || [ ] } ] }
270
266
threshold = { throughputSLO }
271
267
lineColor = { LineColor . Quarternary }
272
- yScaleType = { ScaleType . linear }
273
268
/>
274
269
</ GraphContainer >
275
270
</ MiddleColumn >
0 commit comments