add temp fix
This commit is contained in:
parent
f7781246fd
commit
62290848b9
|
@ -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) {
|
||||||
|
|
Loading…
Reference in New Issue