From 2fe7d9a3b6f55f618882438c8bfc0276d443090c Mon Sep 17 00:00:00 2001 From: Asad Shabir Date: Fri, 13 Dec 2024 16:40:06 +0500 Subject: [PATCH] Deeplink ordering note added to README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index d49d291..f209816 100644 --- a/README.md +++ b/README.md @@ -178,6 +178,7 @@ The `AppDelegate.m` file can only have one method for `openUrl`. If you're also return NO; } ``` +**NOTE:** Always ensure that the `RCTLinkingManager` condition is added as the last condition in your deep linking logic. If placed before `FBSDKApplicationDelegate` condition, it will intercept the Facebook SSO link, treating it as a standard deep link. This misconfiguration will break the Facebook Single Sign-On (SSO) functionality, leading to unexpected behavior in your app. Proper ordering is critical for seamless SSO integration.. ### Troubleshooting