Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

await `share` before closing menu (#3173)

authored by

Hailey and committed by
GitHub
e4a1069b 596e744d

+2 -2
+2 -2
src/lib/sharing.ts
··· 12 12 */ 13 13 export async function shareUrl(url: string) { 14 14 if (isAndroid) { 15 - Share.share({message: url}) 15 + await Share.share({message: url}) 16 16 } else if (isIOS) { 17 - Share.share({url}) 17 + await Share.share({url}) 18 18 } else { 19 19 // React Native Share is not supported by web. Web Share API 20 20 // has increasing but not full support, so default to clipboard