diff options
author | Ivan Chen <ivan@tagg.id> | 2021-06-30 15:58:41 -0400 |
---|---|---|
committer | Ivan Chen <ivan@tagg.id> | 2021-06-30 15:58:41 -0400 |
commit | 3b73e88ac85b4c45ba34f9ddbc859b21edcc0f6b (patch) | |
tree | e229a84bff00e85a6375de8d41ad989124625251 | |
parent | 9eb246e92aad427ac4d12840960f0be531f43d19 (diff) |
Remove unused comment
-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', |