diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/assets/images/test-thumbnail.jpg | bin | 0 -> 203285 bytes | |||
-rw-r--r-- | src/components/moments/Moment.tsx | 6 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/assets/images/test-thumbnail.jpg b/src/assets/images/test-thumbnail.jpg Binary files differnew file mode 100644 index 00000000..b67eab01 --- /dev/null +++ b/src/assets/images/test-thumbnail.jpg 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', |