Skip to content

Commit

Permalink
Fix back button (#117)
Browse files Browse the repository at this point in the history
Patch
  • Loading branch information
muukii committed Oct 27, 2022
1 parent e4bf627 commit 6fff632
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/FluidInterfaceKit/Helper/UIBarButtonItem+.swift
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ extension UIBarButtonItem {

private var _onTapClosure: (@MainActor () -> Void)? {
get {
objc_getAssociatedObject(self, &ref) as? () -> Void
objc_getAssociatedObject(self, &ref) as? (@MainActor () -> Void)
}
set {
objc_setAssociatedObject(self, &ref, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC)
Expand Down

0 comments on commit 6fff632

Please sign in to comment.