diff --git a/frontend/src/pages/Dashboard.tsx b/frontend/src/pages/Dashboard.tsx index a282a60..f9ec6d8 100644 --- a/frontend/src/pages/Dashboard.tsx +++ b/frontend/src/pages/Dashboard.tsx @@ -123,21 +123,21 @@ export function DashboardPage() { LLM Cost (24h) -

${systemData.llm.cost_24h?.toFixed(2) ?? '0.00'}

+

${systemData.llm.last_24h_cost?.toFixed(2) ?? '0.00'}

LLM Tokens (24h)
-

{systemData.llm.tokens_24h?.toLocaleString() ?? '0'}

+

{systemData.llm.last_24h_tokens?.toLocaleString() ?? '0'}

Active Plugins
-

{systemData.plugins?.active_count ?? '—'}

+

{systemData.plugins?.active_plugins?.length ?? '—'}

)}