We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19a65d5 commit 9d4d85cCopy full SHA for 9d4d85c
README.md
@@ -267,7 +267,7 @@ in the App.tsx or parent level Component
267
};
268
const linkSubscription = Linking.addEventListener('url', handleUrlEvents);
269
270
- Linking.getInitialURL(url => processUniversalLink(url));
+ Linking.getInitialURL().then((url) => url && processUniversalLink(url));
271
return () => linkSubscription.remove();
272
}, []);
273
```
0 commit comments