From f1dc99b319243643289e65f75a3d9206d4d7e97c Mon Sep 17 00:00:00 2001 From: Agent Zero Date: Fri, 21 Aug 2026 00:16:02 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20I.3=20Dashboard=20=E2=80=94=20fix=20tsc?= =?UTF-8?q?=20errors=20(last=5F24h=5Fcost,=20last=5F24h=5Ftokens,=20active?= =?UTF-8?q?=5Fplugins.length),=20tsc=20clean?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/pages/Dashboard.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 ?? '—'}

)}