diff options
| -rw-r--r-- | ios/MullvadVPN/NotificationBannerView.swift | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/ios/MullvadVPN/NotificationBannerView.swift b/ios/MullvadVPN/NotificationBannerView.swift index bd74ee3dbf..325230d8a6 100644 --- a/ios/MullvadVPN/NotificationBannerView.swift +++ b/ios/MullvadVPN/NotificationBannerView.swift @@ -66,9 +66,7 @@ class NotificationBannerView: UIView { view.translatesAutoresizingMaskIntoConstraints = false view.backgroundColor = .dangerColor view.layer.cornerRadius = NotificationBannerView.indicatorViewSize.width * 0.5 - if #available(iOS 13.0, *) { - view.layer.cornerCurve = .circular - } + view.layer.cornerCurve = .circular return view }() |
