From 72bf43310b3fd5b0d83b4c1ee00b50e1e9f91fe9 Mon Sep 17 00:00:00 2001 From: Yvette Carlisle Date: Tue, 16 Jun 2026 22:22:45 +0800 Subject: [PATCH] {"schema":"decodex/commit/1","summary":"Remove issue chip percentage","authority":"manual"} --- .../Sources/DecodexApp/AccountPanelView.swift | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/apps/decodex-app/Sources/DecodexApp/AccountPanelView.swift b/apps/decodex-app/Sources/DecodexApp/AccountPanelView.swift index 7b7603c22..6a9e2ec4d 100644 --- a/apps/decodex-app/Sources/DecodexApp/AccountPanelView.swift +++ b/apps/decodex-app/Sources/DecodexApp/AccountPanelView.swift @@ -1870,16 +1870,6 @@ struct AccountRunChipView: View { .lineLimit(1) .truncationMode(.middle) .fixedSize(horizontal: true, vertical: false) - - if let modelProgress { - Text("\(modelProgress.percent)%") - .font(PanelFont.usageLabel) - .foregroundStyle(PanelPalette.secondaryText(colorScheme).opacity(0.86)) - .monospacedDigit() - .lineLimit(1) - .fixedSize(horizontal: true, vertical: false) - .help("\(modelProgress.title) \(modelProgress.percent)%") - } } .frame(height: AccountRunChipLayout.height) .padding(.horizontal, AccountRunChipLayout.horizontalPadding) @@ -1943,10 +1933,6 @@ struct AccountRunChipView: View { panelTrimmed(run.issueIdentifier) ?? "Run" } - private var modelProgress: OperatorModelProgressReadout? { - operatorModelProgressReadout(for: run, currentTime: currentTime) - } - private var tint: Color { if run.hasAttentionTone { return PanelPalette.warning(colorScheme)