We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 340fd2a commit baa20d4Copy full SHA for baa20d4
index.js
@@ -87,7 +87,6 @@ class CameraRollPicker extends Component {
87
}
88
89
appendImages(data) {
90
- console.log("data", data)
91
const assets = data.edges;
92
const newState = {
93
loadingMore: false,
@@ -193,8 +192,6 @@ class CameraRollPicker extends Component {
193
192
const isSelected = item.map((imageItem) => {
194
if (!imageItem) return false;
195
const { uri } = imageItem.node.image;
196
- // const { locInfo } = item.node.location;
197
- // console.log("locInfo", locInfo)
198
return(arrayObjectIndexOf(selected, 'uri', uri) >= 0);
199
});
200
return (<Row
0 commit comments