diff options
author | Michael <michael.foiani@gmail.com> | 2021-07-13 16:22:27 -0400 |
---|---|---|
committer | Michael <michael.foiani@gmail.com> | 2021-07-13 16:22:27 -0400 |
commit | 18eca660a7220e4bb67b7ddc267cfde7e8905c0d (patch) | |
tree | 10d8baaa3665024bbef46d3e44671e279bf1d237 /src/utils/camera.ts | |
parent | 648193580fb2648906864f439befff5dad480671 (diff) |
Small variable I forgot to delete.
Diffstat (limited to 'src/utils/camera.ts')
-rw-r--r-- | src/utils/camera.ts | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/utils/camera.ts b/src/utils/camera.ts index f95499a5..4f933b0c 100644 --- a/src/utils/camera.ts +++ b/src/utils/camera.ts @@ -8,7 +8,6 @@ import { TakePictureOptions, TakePictureResponse, } from 'react-native-camera'; - import ImagePicker, {ImageOrVideo, Video} from 'react-native-image-crop-picker'; import {ERROR_UPLOAD} from '../constants/strings'; @@ -93,18 +92,6 @@ export const navigateToVideoPicker = (callback: (vid: Video) => void) => { }); }; -const options = { - compress: { - width: 1080, - height: 1920, - bitrateMultiplier: 3, - saveToCameraRoll: true, // default is false, iOS only - saveWithCurrentDate: true, // default is false, iOS only - minimumBitrate: 300000, - // removeAudio: true, // default is false - }, -}; - export const showGIFFailureAlert = (onSuccess: () => void) => Alert.alert( 'Warning', |