Skip to content

Commit

Permalink
🐞 Fix: RNIPopoverView Main Queue Warning
Browse files Browse the repository at this point in the history
  • Loading branch information
dominicstop committed Aug 24, 2022
1 parent 67078d0 commit 3887602
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ import Foundation
@objc(RNIPopoverViewManager)
class RNIPopoverViewManager: RCTViewManager {

override static func requiresMainQueueSetup() -> Bool {
return true;
};

override func view() -> UIView! {
return RNIPopoverView(bridge: self.bridge);
};
Expand Down

0 comments on commit 3887602

Please sign in to comment.