aboutsummaryrefslogtreecommitdiff
path: root/src/components/comments
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/comments')
-rw-r--r--src/components/comments/ZoomInCropper.tsx3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/components/comments/ZoomInCropper.tsx b/src/components/comments/ZoomInCropper.tsx
index 3c1e287d..20edafd0 100644
--- a/src/components/comments/ZoomInCropper.tsx
+++ b/src/components/comments/ZoomInCropper.tsx
@@ -307,7 +307,7 @@ export const ZoomInCropper: React.FC<ZoomInCropperProps> = ({
style={styles.zoomView}>
<View style={styles.videoParent} ref={vidRef}>
<TrimmerPlayer
- hideTrimmer={true}
+ hideTrimmer={false}
source={media.uri}
videoStyles={[
styles.media,
@@ -316,7 +316,6 @@ export const ZoomInCropper: React.FC<ZoomInCropperProps> = ({
},
]}
handleLoad={(response: Object) => {
- console.log(response);
const {width, height} = response;
setOrigDimensions([width, height]);
setAspectRatio(width / height);