From 46fb4fd9e2cf8e28c6168fbbae4119b7a8cedffb Mon Sep 17 00:00:00 2001 From: Andrew Blakeslee Moore Date: Mon, 29 Jun 2026 00:09:24 -0700 Subject: [PATCH] Reset Usage Persistence Nucleic-Session: 4FCCE515-0EB6-4269-8C29-AE824D82768B Co-authored-by: Nucleic --- Sources/NucleicApp/QuotaIndicator.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/NucleicApp/QuotaIndicator.swift b/Sources/NucleicApp/QuotaIndicator.swift index c5476bd2..f6a84fd9 100644 --- a/Sources/NucleicApp/QuotaIndicator.swift +++ b/Sources/NucleicApp/QuotaIndicator.swift @@ -180,7 +180,7 @@ struct QuotaIndicator: View { lines.append("Claude subscription usage") func line(_ name: String, _ w: UsageWindow?) { guard let w else { return } - var s = " \(name): \(QuotaFormat.percent(w.utilization)) used" + var s = " \(name): \(QuotaFormat.percent(w.utilization(at: now))) used" if let caption = QuotaFormat.resetCaption(w, now: now) { s += " ยท \(caption)" } lines.append(s) }