Skip to content

Commit

Permalink
Fix duplicate RCTMethodInfo import (facebook/react-native#15775) (zoo…
Browse files Browse the repository at this point in the history
  • Loading branch information
thebradbain committed Apr 7, 2018
1 parent 2c475ab commit 02c6c1d
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"
#if __has_include(<React/RCTBridgeModule.h>)
#import <React/RCTBridgeModule.h>
#else
#import <React/RCTBridgeModule.h>
#import "RCTBridgeModule.h"
#endif

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

0 comments on commit 02c6c1d

Please sign in to comment.