diff options
Diffstat (limited to 'src/components')
-rw-r--r-- | src/components/moments/Moment.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/moments/Moment.tsx b/src/components/moments/Moment.tsx index 04d35825..6054639a 100644 --- a/src/components/moments/Moment.tsx +++ b/src/components/moments/Moment.tsx @@ -97,7 +97,7 @@ const Moment: React.FC<MomentProps> = ({ picture.path && picture.filename ) { - showAlert(picture); + showGIFFailureAlert(picture); } else if (picture.path && picture.filename) { navigation.navigate('ZoomInCropper', { screenType, @@ -118,10 +118,10 @@ const Moment: React.FC<MomentProps> = ({ }; /* Handles GIF files */ - const showAlert = (picture) => + const showGIFFailureAlert = (picture) => Alert.alert( 'Warning', - 'The cropped image will not be a GIF, but will only include the first frame of the GIF. Continue?', + 'The app currently cannot handle GIFs, and will only save a static image. Continue?', [ { text: 'Cancel', |