From 8f3ead2f65be0378a0de60623a6f7b6cad335a48 Mon Sep 17 00:00:00 2001 From: SuperDooper <37051355+superdooper86@users.noreply.github.com> Date: Sun, 10 May 2026 23:40:29 +0200 Subject: [PATCH] fix: replace stale 'No API key configured' with correct signed-out message --- ClaudeChecker/ContentView.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ClaudeChecker/ContentView.swift b/ClaudeChecker/ContentView.swift index af41b33..231b6e5 100644 --- a/ClaudeChecker/ContentView.swift +++ b/ClaudeChecker/ContentView.swift @@ -911,12 +911,12 @@ struct ErrorBanner: View { struct EmptyStateView: View { var body: some View { VStack(spacing: 10) { - Image(systemName: "key.slash") + Image(systemName: "person.crop.circle.badge.questionmark") .font(.system(size: 28)) .foregroundColor(.secondary) - Text("No API key configured") + Text("Not signed in") .font(.system(size: 13, weight: .medium)) - Text("Open Settings to add your Anthropic API key.") + Text("Sign in to claude.ai to see your usage.") .font(.system(size: 11.5)) .foregroundColor(.secondary) .multilineTextAlignment(.center)