This commit is contained in:
2025-11-18 16:18:43 +07:00
parent f150a84cf0
commit 08b352f686
10 changed files with 2140 additions and 27 deletions

View File

@@ -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}>