summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--ios/MullvadVPN/View controllers/RevokedDevice/RevokedDeviceViewController.swift5
1 files changed, 2 insertions, 3 deletions
diff --git a/ios/MullvadVPN/View controllers/RevokedDevice/RevokedDeviceViewController.swift b/ios/MullvadVPN/View controllers/RevokedDevice/RevokedDeviceViewController.swift
index 4f653b51ff..e14b1e6eba 100644
--- a/ios/MullvadVPN/View controllers/RevokedDevice/RevokedDeviceViewController.swift
+++ b/ios/MullvadVPN/View controllers/RevokedDevice/RevokedDeviceViewController.swift
@@ -27,20 +27,19 @@ class RevokedDeviceViewController: UIViewController, RootContainment {
value: "Device is inactive",
comment: ""
)
- titleLabel.font = UIFont.systemFont(ofSize: 32)
return titleLabel
}()
private lazy var bodyLabel: UILabel = {
let bodyLabel = UILabel()
bodyLabel.translatesAutoresizingMaskIntoConstraints = false
- bodyLabel.font = UIFont.systemFont(ofSize: 17)
+ bodyLabel.font = UIFont.systemFont(ofSize: 17, weight: .semibold)
bodyLabel.numberOfLines = 0
bodyLabel.textColor = .white
bodyLabel.text = NSLocalizedString(
"DESCRIPTION_LABEL",
tableName: "RevokedDevice",
- value: "You have revoked this device. To connect again, you will need to log back in.",
+ value: "You have removed this device. To connect again, you will need to log back in.",
comment: ""
)
return bodyLabel