diff options
| -rw-r--r-- | ios/MullvadVPN/Notifications/UI/NotificationBannerView.swift | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/ios/MullvadVPN/Notifications/UI/NotificationBannerView.swift b/ios/MullvadVPN/Notifications/UI/NotificationBannerView.swift index 8671d48bc2..099da9187f 100644 --- a/ios/MullvadVPN/Notifications/UI/NotificationBannerView.swift +++ b/ios/MullvadVPN/Notifications/UI/NotificationBannerView.swift @@ -125,10 +125,8 @@ final class NotificationBannerView: UIView { indicatorView.heightAnchor.constraint(equalToConstant: Self.indicatorViewSize.height), titleLabel.topAnchor.constraint(equalTo: wrapperView.layoutMarginsGuide.topAnchor), - titleLabel.leadingAnchor.constraint( - equalToSystemSpacingAfter: indicatorView.trailingAnchor, - multiplier: 1 - ), + titleLabel.leadingAnchor.constraint(equalToSystemSpacingAfter: indicatorView.trailingAnchor, multiplier: 1), + titleLabel.trailingAnchor.constraint(equalTo: wrapperView.layoutMarginsGuide.trailingAnchor), bodyLabel.topAnchor.constraint( equalToSystemSpacingBelow: titleLabel.bottomAnchor, |
