diff --git a/Mythic/Views/Unified/Modules/DownloadCard.swift b/Mythic/Views/Unified/Modules/DownloadCard.swift index a0305c18..6306274c 100644 --- a/Mythic/Views/Unified/Modules/DownloadCard.swift +++ b/Mythic/Views/Unified/Modules/DownloadCard.swift @@ -29,7 +29,7 @@ struct DownloadCard: View { private var statusText: Text { if operation.current?.game == game { - return .init("\(operation.current?.type.rawValue.capitalized ?? "MODIFYING") \(Image(systemName: "arrow.down.circle"))") + return .init("\(operation.current?.type.rawValue.uppercased() ?? "MODIFYING") \(Image(systemName: "arrow.down.circle"))") } else if operation.queue.contains(where: { $0.game == game }) { return .init("QUEUED \(Image(systemName: "stopwatch"))") } diff --git a/Mythic/Views/Unified/Sheets/InstallStatusView.swift b/Mythic/Views/Unified/Sheets/InstallStatusView.swift index c1b8d853..b531574f 100644 --- a/Mythic/Views/Unified/Sheets/InstallStatusView.swift +++ b/Mythic/Views/Unified/Sheets/InstallStatusView.swift @@ -30,7 +30,7 @@ struct InstallStatusView: View { var body: some View { if let current = operation.current { VStack { - Text("\(current.type.rawValue.uppercased()) \"\(current.game.title)\"...") + Text("\(current.type.rawValue.capitalized) \"\(current.game.title)\"...") .font(.title) Text("\(Int(operation.status.progress?.percentage ?? 0))% Complete")