Skip to content

Commit

Permalink
Merge pull request #206 from readyvery/test
Browse files Browse the repository at this point in the history
Fix: 영수증 내 수령 방식 수정
  • Loading branch information
hhbb0081 authored Mar 29, 2024
2 parents 49c2c80 + 20407c2 commit 2dd6e24
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/views/Home/ReciptBox.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export default function ReceiptBox ({children, modalIdx, setModalIdx}) {
<div className="receiptTextBox">
<span className="receipt-text">수령방식</span>
<span className="receipt-text">
{selectedInfo[0]?.pickUp === 1 ? "픽업" : "매장"}
{selectedInfo[0]?.pickUp === 1 ? "매장" : "픽업"}
</span>
</div>
<div className="receipt-divider" />
Expand Down Expand Up @@ -196,4 +196,4 @@ export default function ReceiptBox ({children, modalIdx, setModalIdx}) {
}
</div>
);
}
}

0 comments on commit 2dd6e24

Please sign in to comment.