Skip to content

Commit

Permalink
fix in-menu image loading on android (#644)
Browse files Browse the repository at this point in the history
  • Loading branch information
hawkrives authored Jan 27, 2017
1 parent ca9401d commit 4ac6ff7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion views/menus/components/dietary-tags.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export function DietaryTags({corIcons, dietary, style}: {corIcons: MasterCorIcon

// turn the remaining items into images
let tags = map(filtered, (dietaryIcon, key) => {
return <Image key={key} source={{url: dietaryIcon.image}} style={styles.icons} />
return <Image key={key} source={{uri: dietaryIcon.image}} style={styles.icons} />
})

return <View style={[styles.container, style]}>{tags}</View>
Expand Down

0 comments on commit 4ac6ff7

Please sign in to comment.