order
This commit is contained in:
@@ -85,17 +85,17 @@ export default function CartItemCard({
|
||||
return (
|
||||
<View style={styles.container}>
|
||||
<Image
|
||||
source={{ uri: item.productImage }}
|
||||
source={{ uri: item.product.imageUrl }}
|
||||
style={styles.image}
|
||||
resizeMode="cover"
|
||||
/>
|
||||
|
||||
<View style={styles.info}>
|
||||
<Text style={styles.name} numberOfLines={2}>
|
||||
{item.productName}
|
||||
{item.product.productName}
|
||||
</Text>
|
||||
|
||||
<Text style={styles.price}>{formatPrice(item.price)}</Text>
|
||||
<Text style={styles.price}>{formatPrice(item.product.price)}</Text>
|
||||
|
||||
<View style={styles.footer}>
|
||||
<View style={styles.quantityContainer}>
|
||||
|
||||
Reference in New Issue
Block a user