From 0f048c73f67fba27756a219f2cb9d09350cd687c Mon Sep 17 00:00:00 2001 From: Mojgan Date: Thu, 9 Nov 2023 15:29:59 +0100 Subject: [PATCH] fix font weight and text --- .../RevokedDevice/RevokedDeviceViewController.swift | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ios/MullvadVPN/View controllers/RevokedDevice/RevokedDeviceViewController.swift b/ios/MullvadVPN/View controllers/RevokedDevice/RevokedDeviceViewController.swift index 4f653b51ff6e..e14b1e6ebae6 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