aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/components/moments/Moment.tsx11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/components/moments/Moment.tsx b/src/components/moments/Moment.tsx
index 1c850b29..557f9d4a 100644
--- a/src/components/moments/Moment.tsx
+++ b/src/components/moments/Moment.tsx
@@ -56,10 +56,13 @@ const Moment: React.FC<MomentProps> = ({
})
.then((picture) => {
if ('path' in picture) {
- navigation.navigate('ImageCropper', {
- screenType,
- title: title,
- image: picture,
+ // navigation.navigate('ImageCropper', {
+ // screenType,
+ // title: title,
+ // image: picture,
+ // });
+ navigation.navigate('ZoomInCropper', {
+ imageURI: picture.path,
});
}
})