diff --git a/frontend/src/pages/Dashboard.tsx b/frontend/src/pages/Dashboard.tsx index e96e4b9..34c98cb 100644 --- a/frontend/src/pages/Dashboard.tsx +++ b/frontend/src/pages/Dashboard.tsx @@ -473,7 +473,6 @@ export default function Dashboard() { : elapsed < 1440 ? `${Math.round(elapsed / 60)}h` : `${Math.round(elapsed / 1440)}j` const patternsAdded: number = last?.patterns_added ?? 0 - const patternsScored: number = last?.patterns_scored ?? 0 const tradesLogged: number = cycleTrades.length const tradesNotLogged: number = Math.max(0, patternsAdded - tradesLogged) const tradesClosed = cycleTrades.filter((t: any) => t.status === 'closed').length @@ -502,8 +501,8 @@ export default function Dashboard() { )}