Skip to content

Commit 6fff632

Browse files
authored
Fix back button (#117)
Patch
1 parent e4bf627 commit 6fff632

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/FluidInterfaceKit/Helper/UIBarButtonItem+.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ extension UIBarButtonItem {
4444

4545
private var _onTapClosure: (@MainActor () -> Void)? {
4646
get {
47-
objc_getAssociatedObject(self, &ref) as? () -> Void
47+
objc_getAssociatedObject(self, &ref) as? (@MainActor () -> Void)
4848
}
4949
set {
5050
objc_setAssociatedObject(self, &ref, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC)

0 commit comments

Comments
 (0)