Skip to content

Commit

Permalink
Fix Xcode 16 beta 5 error (#196)
Browse files Browse the repository at this point in the history
  • Loading branch information
stephencelis authored Aug 7, 2024
1 parent 2101b07 commit e7b6b93
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 68 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,8 @@

override func responds(to aSelector: Selector!) -> Bool {
aSelector == #selector(navigationController(_:didShow:animated:))
|| base?.responds(to: aSelector) ?? false
|| MainActor.assumeIsolated { base?.responds(to: aSelector) }
?? false
}

func navigationController(
Expand Down

This file was deleted.

0 comments on commit e7b6b93

Please sign in to comment.