feat: change price product transaction

This commit is contained in:
caturbgs 2021-12-17 01:45:35 +07:00
parent 29f97f751a
commit 9269ae0858

View File

@ -95,7 +95,7 @@ export const Product = observer(() => {
<Card onClick={() => handleBuyProduct(item)} style={{cursor: "pointer"}}> <Card onClick={() => handleBuyProduct(item)} style={{cursor: "pointer"}}>
<span style={{color: "black"}}>{item.name}</span> <span style={{color: "black"}}>{item.name}</span>
<br/> <br/>
<span style={{color: "grey", fontSize: 10}}>{item.price}</span> <span style={{color: "grey", fontSize: 10}}>{item?.currentPrice?.mark_up_price}</span>
</Card> </Card>
</Col> </Col>
))} ))}