Skip to content

Commit 280b8f1

Browse files
committed
fix: 장바구니에서 개인 후원 금액이 누락된 부분 수정
1 parent b6429e5 commit 280b8f1

File tree

1 file changed

+1
-1
lines changed
  • packages/shop/src/components/features

1 file changed

+1
-1
lines changed

packages/shop/src/components/features/cart.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ const CartItem: React.FC<
5555
<Divider />
5656
<br />
5757
<Typography variant="h6" sx={{ textAlign: "end" }}>
58-
{productPriceStr}: <CommonComponents.PriceDisplay price={cartProdRel.price} />
58+
{productPriceStr}: <CommonComponents.PriceDisplay price={cartProdRel.price + cartProdRel.donation_price} />
5959
</Typography>
6060
</Common.Components.MDX.PrimaryStyledDetails>
6161
);

0 commit comments

Comments
 (0)