@@ -35,7 +35,6 @@ import {
3535 StyledFormControl ,
3636} from './MetricsSummary.styles' ;
3737import { useSummary } from './useSummary' ;
38- import { ScaleType } from '../Charts/DashedLine/DashedLine.interfaces' ;
3938
4039const percentileOptions = [ 'p50' , 'p90' , 'p95' , 'p99' ] ;
4140
@@ -208,7 +207,6 @@ export const Component = () => {
208207 data = { [ { id : 'ttft' , data : lineDataByRps . ttft || [ ] } ] }
209208 threshold = { ttftSLO }
210209 lineColor = { LineColor . Primary }
211- yScaleType = { ScaleType . linear }
212210 />
213211 </ GraphContainer >
214212 </ MiddleColumn >
@@ -227,7 +225,6 @@ export const Component = () => {
227225 data = { [ { id : 'tpot' , data : lineDataByRps . tpot || [ ] } ] }
228226 threshold = { tpotSLO }
229227 lineColor = { LineColor . Secondary }
230- yScaleType = { ScaleType . linear }
231228 />
232229 </ GraphContainer >
233230 </ MiddleColumn >
@@ -248,7 +245,6 @@ export const Component = () => {
248245 ] }
249246 threshold = { timePerRequestSLO }
250247 lineColor = { LineColor . Tertiary }
251- yScaleType = { ScaleType . linear }
252248 />
253249 </ GraphContainer >
254250 </ MiddleColumn >
@@ -269,7 +265,6 @@ export const Component = () => {
269265 data = { [ { id : 'throughput' , data : lineDataByRps . throughput || [ ] } ] }
270266 threshold = { throughputSLO }
271267 lineColor = { LineColor . Quarternary }
272- yScaleType = { ScaleType . linear }
273268 />
274269 </ GraphContainer >
275270 </ MiddleColumn >
0 commit comments