diff options
author | Brian Kim <brian@tagg.id> | 2021-07-01 01:23:19 +0900 |
---|---|---|
committer | Brian Kim <brian@tagg.id> | 2021-07-01 01:23:19 +0900 |
commit | 1c1975265fb6013c34c8e766a7f11b0c5b8d1e11 (patch) | |
tree | 5b3871bd427375f074f1c0e1f957c7544932710f | |
parent | 50344b4236e235fdd42997c1fe85f2c1bd014e47 (diff) |
Respond to comments
-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', |