add temp fix

This commit is contained in:
GleidsonDaniel 2022-11-21 09:03:00 -03:00
parent f7781246fd
commit 62290848b9
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ export const pickMultipleImageAndVideoFromLibrary = async (): Promise<ImagePicke
try { try {
const result = await ImagePicker.launchImageLibraryAsync({ const result = await ImagePicker.launchImageLibraryAsync({
mediaTypes: ImagePicker.MediaTypeOptions.All, mediaTypes: ImagePicker.MediaTypeOptions.All,
quality: 1, quality: isAndroid ? 1 : undefined, // TODO - Apply fix for iOS processing error
allowsMultipleSelection: true allowsMultipleSelection: true
}); });
if (!result.cancelled) { if (!result.cancelled) {