Skip to content

Commit

Permalink
fix: 예매확인 페이지 예매 상태 워딩 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
imddoy committed Dec 15, 2024
1 parent 8df2df5 commit 59c7675
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/constants/bookingStatus.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
export const bookingStatusText = {
CHECKING_PAYMENT: "입금 확인 예정",
CHECKING_PAYMENT: "입금 확인 ",
BOOKING_CONFIRMED: "입금 완료",
BOOKING_CANCELLED: "취소 완료",
BOOKING_DELETED: "예매 삭제",
REFUND_REQUESTED: "취소 요청",
BOOKING_DELETED: "취소 완료",
REFUND_REQUESTED: "환불 요청",
};

export type bookingStatusTypes = keyof typeof bookingStatusText;
Expand Down
2 changes: 1 addition & 1 deletion src/pages/cancel/Cancel.styled.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const CancelLayout = styled.main`
display: flex;
flex-direction: column;
width: 100%;
padding: 1.6rem 2.4rem;
padding: 1.6rem 2.4rem calc(1.6rem + 5.6rem + 1.2rem);
`;

export const PerformWrapper = styled.section`
Expand Down

0 comments on commit 59c7675

Please sign in to comment.