Skip to content

Commit

Permalink
docs(README): add note about iOS deep link handler ordering (#587)
Browse files Browse the repository at this point in the history
  • Loading branch information
Asad520 authored Dec 17, 2024
1 parent d4813d8 commit 09233b8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 09233b8

Please sign in to comment.