about summary refs log tree commit diff
path: root/src/lib/media/picker.tsx
diff options
context:
space:
mode:
authorEric Bailey <git@esb.lol>2023-11-14 19:46:46 -0600
committerGitHub <noreply@github.com>2023-11-14 17:46:46 -0800
commitab1ce078ec16866c691eac81f7b1517bb26399c9 (patch)
tree34de1759b965279575afe095613f4aa5f6541ea1 /src/lib/media/picker.tsx
parent7d5e01f4330a1227b877dddc7368a50cfef68be0 (diff)
downloadvoidsky-ab1ce078ec16866c691eac81f7b1517bb26399c9.tar.zst
Fix openCamera, openCropped, lightbox model, and image model usages (#1908)
Diffstat (limited to 'src/lib/media/picker.tsx')
-rw-r--r--src/lib/media/picker.tsx9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/lib/media/picker.tsx b/src/lib/media/picker.tsx
index e91a5b8dd..bf531c981 100644
--- a/src/lib/media/picker.tsx
+++ b/src/lib/media/picker.tsx
@@ -6,15 +6,6 @@ import {
 import {CameraOpts, CropperOptions} from './types'
 export {openPicker} from './picker.shared'
 
-/**
- * NOTE
- * These methods all include the RootStoreModel as the first param
- * because the web versions require it. The signatures have to remain
- * equivalent between the different forms, but the store param is not
- * used here.
- * -prf
- */
-
 export async function openCamera(opts: CameraOpts): Promise<RNImage> {
   const item = await openCameraFn({
     width: opts.width,