diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/components/comments/ZoomInCropper.tsx | 4 | ||||
-rw-r--r-- | src/utils/camera.ts | 2 |
2 files changed, 0 insertions, 6 deletions
diff --git a/src/components/comments/ZoomInCropper.tsx b/src/components/comments/ZoomInCropper.tsx index c20bab67..5f14522e 100644 --- a/src/components/comments/ZoomInCropper.tsx +++ b/src/components/comments/ZoomInCropper.tsx @@ -339,8 +339,6 @@ const styles = StyleSheet.create({ backgroundColor: 'black', height: SCREEN_HEIGHT, width: SCREEN_WIDTH, - // flexDirection: 'column', - // justifyContent: 'center', }, closeButton: { position: 'absolute', @@ -375,7 +373,5 @@ const styles = StyleSheet.create({ zoomView: { backgroundColor: 'black', flex: 1, - // borderColor: 'pink', - // borderWidth: 2, }, }); diff --git a/src/utils/camera.ts b/src/utils/camera.ts index 8c05355f..15758112 100644 --- a/src/utils/camera.ts +++ b/src/utils/camera.ts @@ -91,8 +91,6 @@ export const navigateToVideoPicker = (callback: (vid: Video) => void) => { }) .then(async (vid) => { if (vid.path) { - ProcessingManager.compress(vid.path, options.compress) // like VideoPlayer compress options - .then((data: any) => console.log(data)); callback(vid); } }) |