diff --git a/web/pages/simulator/index.tsx b/web/pages/simulator/index.tsx index 6fda9ae4..0669df62 100644 --- a/web/pages/simulator/index.tsx +++ b/web/pages/simulator/index.tsx @@ -234,8 +234,7 @@ export default function Simulator() { () => makeEntries(bids.slice(0, steps)), [bids, steps] ) - - const probs = useMemo(() => entries.map((entry) => entry.prob), [entries]) + const probs = entries.map((entry) => entry.prob) // Set up chart const [chartData, setChartData] = useState({ datasets: [] } as ChartData)