Skip to content

Commit

Permalink
Update ReciptBox.jsx
Browse files Browse the repository at this point in the history
  • Loading branch information
hhbb0081 authored Mar 29, 2024
1 parent ec9d9ad commit 20407c2
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 20407c2

Please sign in to comment.