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)