Skip to content

Commit

Permalink
Change import priority of React/RCTBridgeModule.h (#437)
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-arrow committed May 31, 2023
1 parent 18b4888 commit 3a621c0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ios/ImageCropPicker.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@

#import <Foundation/Foundation.h>

#if __has_include("RCTBridgeModule.h")
#import "RCTBridgeModule.h"
#import "RCTImageLoader.h"
#else
#if __has_include(<React/RCTBridgeModule.h>)
#import <React/RCTBridgeModule.h>
#import <React/RCTImageLoader.h>
#else
#import "RCTBridgeModule.h"
#import "RCTImageLoader.h"
#endif

#if __has_include("QBImagePicker.h")
Expand Down

0 comments on commit 3a621c0

Please sign in to comment.