From 28f914d78f11359238a34111e1100006b98e9daf Mon Sep 17 00:00:00 2001 From: Compulsor Date: Mon, 19 Mar 2018 13:50:47 +0100 Subject: [PATCH] Changed if/else statement to avoid React error. --- ios/OAuthManager/OAuthManager.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ios/OAuthManager/OAuthManager.h b/ios/OAuthManager/OAuthManager.h index 4f653e4..4fcf44b 100644 --- a/ios/OAuthManager/OAuthManager.h +++ b/ios/OAuthManager/OAuthManager.h @@ -7,10 +7,10 @@ #import -#if __has_include("RCTBridgeModule.h") - #import "RCTBridgeModule.h" -#else +#if __has_include() #import +#else + #import "RCTBridgeModule.h" #endif #if __has_include("RCTLinkingManager.h")