diff --git a/src/screens/ImagesViewer.tsx b/src/screens/ImagesViewer.tsx index acffce27..0d6af38e 100644 --- a/src/screens/ImagesViewer.tsx +++ b/src/screens/ImagesViewer.tsx @@ -61,9 +61,11 @@ const HeaderComponent = React.memo( analytics('imageviewer_more_share_press') switch (Platform.OS) { case 'ios': - Share.share({ url: imageUrls[currentIndex].url }) + await Share.share({ url: imageUrls[currentIndex].url }) + break case 'android': - Share.share({ message: imageUrls[currentIndex].url }) + await Share.share({ message: imageUrls[currentIndex].url }) + break } break }