···1212 */
1313export async function shareUrl(url: string) {
1414 if (isAndroid) {
1515- Share.share({message: url})
1515+ await Share.share({message: url})
1616 } else if (isIOS) {
1717- Share.share({url})
1717+ await Share.share({url})
1818 } else {
1919 // React Native Share is not supported by web. Web Share API
2020 // has increasing but not full support, so default to clipboard