|
@@ -380,7 +380,7 @@ class KMProductCompareWC: NSWindowController {
|
|
|
guard let productModels2 = results.listingProducts else { return }
|
|
|
for productModel2 in productModels2 {
|
|
|
if productModel2.code == "advanced-annual-subscription" {
|
|
|
- self.advancedPlanPurchaseLabel.stringValue = String(format: "%.2f", Float(productModel2.upgradePriceString ?? "") ?? 0)
|
|
|
+ self.advancedPlanPurchaseLabel.stringValue = String(format: "USD $%.2f", Float(productModel2.upgradePriceString ?? "") ?? 0)
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -391,7 +391,7 @@ class KMProductCompareWC: NSWindowController {
|
|
|
guard let productModels2 = results.listingProducts else { return }
|
|
|
for productModel2 in productModels2 {
|
|
|
if productModel2.code == "advanced-annual-subscription-blackFive" {
|
|
|
- self.advancedPlanPurchaseLabel.stringValue = String(format: "%.2f", Float(productModel2.upgradePriceString ?? "") ?? 0)
|
|
|
+ self.advancedPlanPurchaseLabel.stringValue = String(format: "USD $%.2f", Float(productModel2.upgradePriceString ?? "") ?? 0)
|
|
|
}
|
|
|
}
|
|
|
}
|