diff --git a/frontend/components/dashboard/ScanTerminalDashboard.tsx b/frontend/components/dashboard/ScanTerminalDashboard.tsx index 221a648a..acb243f2 100644 --- a/frontend/components/dashboard/ScanTerminalDashboard.tsx +++ b/frontend/components/dashboard/ScanTerminalDashboard.tsx @@ -386,8 +386,8 @@ function CityGroupedTable({ {temp(best.current_temp || best.current_max_so_far, best.temp_symbol)} {temp(best.deb_prediction, best.temp_symbol)} - {pct(best.market_probability ?? best.market_event_probability)} - {money(best.book_liquidity ?? best.market_liquidity ?? best.volume)} + {formatPrice(best.midpoint, best.ask, best.bid)} + {formatSpreadLiquidity(best.spread, best.book_liquidity ?? best.market_liquidity)} {isExpanded && buckets.map((row) => ( - {row.target_label || "--"} + {row.target_label || "--"} {pct(row.edge_percent)} {temp(row.current_temp || row.current_max_so_far, row.temp_symbol)} {temp(row.deb_prediction, row.temp_symbol)} - {pct(row.market_probability ?? row.market_event_probability)} - {money(row.book_liquidity ?? row.market_liquidity ?? row.volume)} + {formatPrice(row.midpoint, row.ask, row.bid)} + {formatSpreadLiquidity(row.spread, row.book_liquidity ?? row.market_liquidity)} ))}