diff --git a/apps/decodex-app/Sources/DecodexApp/AccountPanelView.swift b/apps/decodex-app/Sources/DecodexApp/AccountPanelView.swift index d4d59f44..bd5af86b 100644 --- a/apps/decodex-app/Sources/DecodexApp/AccountPanelView.swift +++ b/apps/decodex-app/Sources/DecodexApp/AccountPanelView.swift @@ -1737,7 +1737,7 @@ private extension CodexAccount { case "usage_limited": return "Limited" case "probe_failed": - return "Usage unknown" + return "-" case "expired": return "Refresh needed" case "disabled": diff --git a/apps/decodex-app/Sources/DecodexApp/Models.swift b/apps/decodex-app/Sources/DecodexApp/Models.swift index 12572ce1..b3083643 100644 --- a/apps/decodex-app/Sources/DecodexApp/Models.swift +++ b/apps/decodex-app/Sources/DecodexApp/Models.swift @@ -138,7 +138,7 @@ struct CodexAccount: Decodable, Identifiable, Equatable { switch status { case "available": return "Ready" case "usage_limited": return "Limited" - case "probe_failed": return "Usage unknown" + case "probe_failed": return "-" case "expired": return "Refresh needed" case "disabled": return "Disabled" case "cooldown": return "Cooling" @@ -152,7 +152,7 @@ struct CodexAccount: Decodable, Identifiable, Equatable { return .danger } if status == "probe_failed" { - return .warning + return .neutral } if codexActive { return .codexActive