diff options
| author | Andrej Mihajlov <and@mullvad.net> | 2023-04-19 11:50:24 +0200 |
|---|---|---|
| committer | Andrej Mihajlov <and@mullvad.net> | 2023-04-19 11:50:24 +0200 |
| commit | 11f7c5bbd865a269748252d76f37fdc8e9abda0a (patch) | |
| tree | 6d68a1160c1465f959c4c95e7290b2fd51014bca | |
| parent | 1511b095853a3da3912a4c2dffe49cbab9501e91 (diff) | |
| parent | f46f2234c5f3f01a07996acf94c80c17d944b69d (diff) | |
| download | mullvadvpn-11f7c5bbd865a269748252d76f37fdc8e9abda0a.tar.xz mullvadvpn-11f7c5bbd865a269748252d76f37fdc8e9abda0a.zip | |
Merge branch 'fix/missing-header-in-problem-report-view-ios-107'
| -rw-r--r-- | ios/MullvadVPN/View controllers/ProblemReport/ProblemReportViewController.swift | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ios/MullvadVPN/View controllers/ProblemReport/ProblemReportViewController.swift b/ios/MullvadVPN/View controllers/ProblemReport/ProblemReportViewController.swift index 58c51bba0d..3fe6a73771 100644 --- a/ios/MullvadVPN/View controllers/ProblemReport/ProblemReportViewController.swift +++ b/ios/MullvadVPN/View controllers/ProblemReport/ProblemReportViewController.swift @@ -340,7 +340,7 @@ final class ProblemReportViewController: UIViewController, UITextFieldDelegate { private func addConstraints() { activeMessageTextViewConstraints = [ - messageTextView.topAnchor.constraint(equalTo: view.topAnchor), + messageTextView.topAnchor.constraint(equalTo: view.safeAreaLayoutGuide.topAnchor), messageTextView.leadingAnchor.constraint(equalTo: view.leadingAnchor), messageTextView.trailingAnchor.constraint(equalTo: view.trailingAnchor), messageTextView.bottomAnchor.constraint(equalTo: view.bottomAnchor), |
