Skip to content

Commit 4ac6ff7

Browse files
authored
fix in-menu image loading on android (#644)
1 parent ca9401d commit 4ac6ff7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

views/menus/components/dietary-tags.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export function DietaryTags({corIcons, dietary, style}: {corIcons: MasterCorIcon
2525

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

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

0 commit comments

Comments
 (0)