From 0d807c228519d1961e0c6a1707f64eac137e0dc1 Mon Sep 17 00:00:00 2001 From: SuperDooper <37051355+superdooper86@users.noreply.github.com> Date: Fri, 8 May 2026 23:04:52 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20Session=20Diary=20=E2=80=94=20remove=20C?= =?UTF-8?q?laude=20icon/header,=20split=20stats=20left/right?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ClaudeChecker/ContentView.swift | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/ClaudeChecker/ContentView.swift b/ClaudeChecker/ContentView.swift index 56e2e71..0f492b8 100644 --- a/ClaudeChecker/ContentView.swift +++ b/ClaudeChecker/ContentView.swift @@ -398,12 +398,11 @@ struct DiaryRow: View { var body: some View { VStack(alignment: .leading, spacing: 5) { HStack { - AgentIconView(agent: .claude, size: 12) - Text("Claude") - .font(.system(size: 12, weight: .medium)) - .foregroundColor(color) + Text("\(totalSaved) samples") + .font(.system(size: 10.5)) + .foregroundColor(.secondary) Spacer() - Text("\(totalSaved) samples ยท Avg Burn Rate: +\(String(format: "%.1f", burnRate))%/h") + Text("Avg burn rate: \(String(format: "%.1f", burnRate))%/h") .font(.system(size: 10.5)) .foregroundColor(.secondary) }