浏览代码

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)
             }