···3636 const handleIncomingURL = async (url: string) => {
3737 if (isIOS) {
3838 // Close in-app browser if it's open (iOS only)
3939- // TEMP: promise never resolves if the browser is not open, so don't await
4040- // https://github.com/expo/expo/issues/40710
4141- // add the await back when possible since it's needed to fix the IAB share bug -sfn
4242- /* await */ WebBrowser.dismissBrowser().catch(() => {})
3939+ await WebBrowser.dismissBrowser().catch(() => {})
4340 }
44414542 const referrerInfo = Referrer.getReferrerInfo()