Skip to content

Commit

Permalink
Fix duplicate RCTMethodInfo error
Browse files Browse the repository at this point in the history
  • Loading branch information
markdaws authored Dec 7, 2017
1 parent e466698 commit bc21e51
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ios/OAuthManager/OAuthManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@

#import <Foundation/Foundation.h>

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

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

0 comments on commit bc21e51

Please sign in to comment.