diff options
| author | Bug Magnet <marco.nikic@mullvad.net> | 2025-11-14 12:47:47 +0100 |
|---|---|---|
| committer | Emīls <emils@mullvad.net> | 2025-11-17 16:38:22 +0100 |
| commit | de813a8cb42bcccd1a6ce360aa01ff8fc52e12dc (patch) | |
| tree | 7c6a3af50205af3350d7fc3d91ad34a7210c07cc /ios/MullvadVPN/View controllers/ProblemReport/ProblemReportViewController+ViewManagement.swift | |
| parent | bdf6bd59962d815038b5a2ef3eb9704ad4bf3ff5 (diff) | |
| download | mullvadvpn-ios-release-2025.9.tar.xz mullvadvpn-ios-release-2025.9.zip | |
Remove Optional display for account-token when includedios/2025.9-build4ios-release-2025.9
Diffstat (limited to 'ios/MullvadVPN/View controllers/ProblemReport/ProblemReportViewController+ViewManagement.swift')
| -rw-r--r-- | ios/MullvadVPN/View controllers/ProblemReport/ProblemReportViewController+ViewManagement.swift | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ios/MullvadVPN/View controllers/ProblemReport/ProblemReportViewController+ViewManagement.swift b/ios/MullvadVPN/View controllers/ProblemReport/ProblemReportViewController+ViewManagement.swift index cf37eddbff..7035325c2d 100644 --- a/ios/MullvadVPN/View controllers/ProblemReport/ProblemReportViewController+ViewManagement.swift +++ b/ios/MullvadVPN/View controllers/ProblemReport/ProblemReportViewController+ViewManagement.swift @@ -78,6 +78,11 @@ extension ProblemReportViewController { userPrivacyLabel.pinEdgesToSuperviewMargins(PinnableEdges([.top(0), .trailing(0), .bottom(10)])) } + let constraint = verticalStackView.heightAnchor.constraint(greaterThanOrEqualToConstant: 44) + NSLayoutConstraint.activate( + [constraint] + ) + self.reduceAnonymityWarningView = reduceAnonymityWarningView return verticalStackView |
