Skip to content

Commit

Permalink
Merge pull request #171 from hhbb0081/test
Browse files Browse the repository at this point in the history
Fix: 취소 사유 삭제
  • Loading branch information
hhbb0081 authored Dec 6, 2023
2 parents f109365 + 36f2b7e commit cc608f6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pages/OrderDetail/OrderDetail.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ const OrderDetail = () => {
<div className="detail-top__wrapper">
{detailData?.orderStatus === "CANCEL" ? (
<span className="detail-order-status fail">
주문 취소 {detailData?.cancelReason === null ? <span></span> : <span>({detailData?.cancelReason})</span>}
주문 취소
{/* {detailData?.cancelReason === null ? <span></span> : <span>({detailData?.cancelReason})</span>} */}
</span>
) : (
<span className="detail-order-status">주문 완료</span>
Expand Down

0 comments on commit cc608f6

Please sign in to comment.