Skip to content

Commit

Permalink
fix: product name (#329)
Browse files Browse the repository at this point in the history
  • Loading branch information
heeoneie authored Dec 1, 2023
1 parent 22ccfde commit a37254d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/screen/order/payment/Payment.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ function Product(props) {
<div className='confirm-product'>
<img src={liberty52} alt='제품 이미지' />
<div>
<div className='title'>Liberty 52_Frame</div>
<div className='title'>{productInfo.productName}</div>
<div>
{Object.values(productInfo.frameOption).map((option, idx) => {
return <div key={idx}>{option.name}</div>;
Expand Down

0 comments on commit a37254d

Please sign in to comment.