add another tablet comment

This commit is contained in:
Abbey Campbell
2026-04-21 09:48:27 -07:00
parent 6550ae4360
commit 8316d22333
2 changed files with 4 additions and 4 deletions

View File

@@ -14,7 +14,6 @@ type Props = {
takePhoto: () => Promise<void>,
handleClose: Function,
disabled: boolean,
confirmDisabled: boolean,
photosTaken: boolean,
rotatableAnimatedStyle: Object,
handleCheckmarkPress: Function,
@@ -31,7 +30,6 @@ const CameraOptionsButtons = ( {
takePhoto,
handleClose,
disabled,
confirmDisabled,
photosTaken,
rotatableAnimatedStyle,
handleCheckmarkPress,
@@ -72,7 +70,10 @@ const CameraOptionsButtons = ( {
takePhoto={takePhoto}
handleClose={handleClose}
disabled={disabled}
confirmDisabled={confirmDisabled}
// TODO: once we re-visit tablet views, we'll want to ensure users cannot spam the submit
// button while taking photos. see:
// https://linear.app/inaturalist/issue/MOB-1084/multicapture-camera-multiple-copies-of-photos-can-be-saved
// confirmDisabled={confirmDisabled}
photosTaken={photosTaken}
rotatableAnimatedStyle={rotatableAnimatedStyle}
handleCheckmarkPress={handleCheckmarkPress}

View File

@@ -234,7 +234,6 @@ const StandardCamera = ( {
flipCamera={onFlipCamera}
handleCheckmarkPress={handleCheckmarkPress}
handleClose={handleBackButtonPress}
confirmDisabled={takingPhoto || confirmPhotosInProgress}
hasFlash={hasFlash}
photosTaken={photosTaken}
rotatableAnimatedStyle={rotatableAnimatedStyle}