diff --git a/frontend/src/pages/Dashboard.tsx b/frontend/src/pages/Dashboard.tsx index 3f1b749..7deddde 100644 --- a/frontend/src/pages/Dashboard.tsx +++ b/frontend/src/pages/Dashboard.tsx @@ -238,7 +238,7 @@ export default function Dashboard() { const alias = UNDERLYING_ALIASES[upper] if (alias && watchlistTickers.has(alias)) resolved = alias } - console.warn('[TradesOverview] underlyingDisplayName', { raw: underlying, upper, baseTicker, watchlistTickers: Array.from(watchlistTickers), resolved }) + console.warn(`[TradesOverview] raw=${underlying} upper=${upper} baseTicker=${baseTicker} resolved=${resolved} watchlistTickers=[${Array.from(watchlistTickers).join('|')}]`) return resolved }