From 10924614d8961b96230952f619a4e37db039460a Mon Sep 17 00:00:00 2001 From: Alexandru Lazar Date: Sun, 19 Mar 2017 22:59:06 +0200 Subject: [PATCH] [fix]: fix the import else condition missing # --- ios/OAuthManager/OAuthManager.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ios/OAuthManager/OAuthManager.h b/ios/OAuthManager/OAuthManager.h index 050acc1..4f653e4 100644 --- a/ios/OAuthManager/OAuthManager.h +++ b/ios/OAuthManager/OAuthManager.h @@ -9,17 +9,18 @@ #if __has_include("RCTBridgeModule.h") #import "RCTBridgeModule.h" -else +#else #import #endif #if __has_include("RCTLinkingManager.h") #import "RCTLinkingManager.h" -else +#else #import #endif + @class OAuthClient; static NSString *kAuthConfig = @"OAuthManager";