Skip to content

Commit

Permalink
style: fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
El-Fitz committed Jan 20, 2025
1 parent 7f16f11 commit 6058cda
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -506,10 +506,10 @@ extension AuthenticationCoordinator {
/// Opens the URL in the selected browser
private func openURL(_ url: URL) {
url.open()
if let alertModel = self.pendingAlert {
self.presenter?.isLoadingViewVisible = false
self.presentAlert(for: alertModel)
self.pendingAlert = nil
if let alertModel = pendingAlert {
presenter?.isLoadingViewVisible = false

Check failure on line 510 in wire-ios/Wire-iOS/Sources/Authentication/Coordinator/AuthenticationCoordinator.swift

View workflow job for this annotation

GitHub Actions / PR Tests / Run tests

value of type 'UINavigationController' has no member 'isLoadingViewVisible'

Check failure on line 510 in wire-ios/Wire-iOS/Sources/Authentication/Coordinator/AuthenticationCoordinator.swift

View workflow job for this annotation

GitHub Actions / PR Tests / Run tests

value of type 'UINavigationController' has no member 'isLoadingViewVisible'
presentAlert(for: alertModel)
pendingAlert = nil
}
}

Expand Down

0 comments on commit 6058cda

Please sign in to comment.