소스 검색

don’t log the result

Artur Paikin 6 년 전
부모
커밋
8658eb37ea
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      examples/react-native-expo/react-native/file-picker/selectImage.js

+ 1 - 1
examples/react-native-expo/react-native/file-picker/selectImage.js

@@ -10,7 +10,7 @@ function selectImageWithExpo (options) {
 
         return Expo.ImagePicker.launchImageLibraryAsync(options)
           .then((result) => {
-            console.log(result)
+            // console.log(result)
             if (!result.cancelled) {
               return resolve(result)
             }