Skip to content

Commit

Permalink
Update marker component (react-native-maps#1428)
Browse files Browse the repository at this point in the history
  • Loading branch information
foyarash authored and codedre committed Aug 15, 2017
1 parent 1baacd5 commit 30c8ff9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/components/MapMarker.js
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ class MapMarker extends React.Component {
let image;
if (this.props.image) {
image = resolveAssetSource(this.props.image) || {};
image = image.uri;
image = image.uri || this.props.image;
}

const AIRMapMarker = this.getAirComponent();
Expand Down

0 comments on commit 30c8ff9

Please sign in to comment.