diff --git a/apps/web-roo-code/src/app/evals/plot.tsx b/apps/web-roo-code/src/app/evals/plot.tsx index f68007cd12..a8a0066472 100644 --- a/apps/web-roo-code/src/app/evals/plot.tsx +++ b/apps/web-roo-code/src/app/evals/plot.tsx @@ -15,7 +15,7 @@ type PlotProps = { type LabelPosition = "top" | "bottom" | "left" | "right" export const Plot = ({ tableData }: PlotProps) => { - const chartData = useMemo(() => tableData.filter(({ cost }) => cost < 50), [tableData]) + const chartData = useMemo(() => tableData.filter(({ cost }) => cost < 60), [tableData]) const chartConfig = useMemo( () => chartData.reduce((acc, run) => ({ ...acc, [run.label]: run }), {} as ChartConfig), @@ -235,7 +235,7 @@ export const Plot = ({ tableData }: PlotProps) => {