Vasilis Kortsimelidis

Results 1 comments of Vasilis Kortsimelidis

I had this error when my function call was like this: `onPress={ this.props.onAddLocation(markerLocation) }` but changed it to: `onPress={ this.props.onAddLocation.bind(this, markerLocation) }`