diff options
-rw-r--r-- | src/utils/camera.ts | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/utils/camera.ts b/src/utils/camera.ts index 0be4d27c..9433ccc7 100644 --- a/src/utils/camera.ts +++ b/src/utils/camera.ts @@ -57,13 +57,6 @@ export const navigateToImagePicker = (callback: (pic: Image) => void) => { }); }; -/** - * This function opens the ImagePicker, only lets you select video files, - * formats the file extension, then makes a call to the server to get the presigned URL, - * after which it makes a POST request to the returned URL to upload the file directly to S3. - * params: none - * @returns: none - */ export const navigateToVideoPicker = (callback: (vid: Video) => void) => { ImagePicker.openPicker({ mediaType: 'video', |