diff --git a/README.md b/README.md index 88bdc73..f674f7b 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ ## Features -- **Dashboard** — System health, token usage, cost tracking, recent sessions at a glance +- **Dashboard** — System health, token usage, recent sessions at a glance - **Sessions Browser** — Full conversation history with message rendering, tool call inspection, and full-text search (FTS5) - **Activity Feed** — Recent tool execution log with filtering by kind (read/edit/execute/fetch/browser) and detail inspector - **Live Chat** — Embedded terminal running `hermes chat` with full ANSI color and Rich formatting via [SwiftTerm](https://github.com/migueldeicaza/SwiftTerm) diff --git a/scarf/scarf/Features/Dashboard/Views/DashboardView.swift b/scarf/scarf/Features/Dashboard/Views/DashboardView.swift index 0e698b8..a773b19 100644 --- a/scarf/scarf/Features/Dashboard/Views/DashboardView.swift +++ b/scarf/scarf/Features/Dashboard/Views/DashboardView.swift @@ -56,7 +56,6 @@ struct DashboardView: View { StatCard(label: "Messages", value: "\(viewModel.stats.totalMessages)") StatCard(label: "Tool Calls", value: "\(viewModel.stats.totalToolCalls)") StatCard(label: "Tokens", value: formatTokens(viewModel.stats.totalInputTokens + viewModel.stats.totalOutputTokens)) - StatCard(label: "Est. Cost", value: String(format: "$%.2f", viewModel.stats.totalCostUSD)) } } }