aboutsummaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/camera.ts17
-rw-r--r--src/utils/users.ts6
2 files changed, 1 insertions, 22 deletions
diff --git a/src/utils/camera.ts b/src/utils/camera.ts
index 6c1b9d50..e719162c 100644
--- a/src/utils/camera.ts
+++ b/src/utils/camera.ts
@@ -78,23 +78,6 @@ export const navigateToImagePicker = (
});
};
-export const navigateToVideoPicker = (callback: (vid: Video) => void) => {
- ImagePicker.openPicker({
- mediaType: 'video',
- compressVideoPreset: 'Passthrough',
- })
- .then(async (vid) => {
- if (vid.path) {
- callback(vid);
- }
- })
- .catch((err) => {
- if (err.code && err.code !== 'E_PICKER_CANCELLED') {
- Alert.alert(ERROR_UPLOAD);
- }
- });
-};
-
export const showGIFFailureAlert = (onSuccess: () => void) =>
Alert.alert(
'Warning',
diff --git a/src/utils/users.ts b/src/utils/users.ts
index 75858fe2..992d7721 100644
--- a/src/utils/users.ts
+++ b/src/utils/users.ts
@@ -254,7 +254,6 @@ export const patchProfile = async (
cropping: true,
cropperToolbarTitle: screenTitle,
mediaType: 'photo',
- compressVideoPreset: 'Passthrough',
};
break;
case 'profile':
@@ -275,16 +274,13 @@ export const patchProfile = async (
cropperToolbarTitle: screenTitle,
mediaType: 'photo',
cropperCircleOverlay: true,
- compressVideoPreset: 'Passthrough',
};
break;
default:
screenTitle = '';
requestTitle = '';
fileName = '';
- imageSettings = {
- compressVideoPreset: 'Passthrough',
- };
+ imageSettings = {};
}
return await ImagePicker.openPicker(imageSettings)