-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Feat/#372] 예매 조회 페이지 취소 상태 추가 #376
Merged
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
b1d9a34
Merge branch 'refactor/#362/DesignUpdateSprint1' of https://github.co…
sinji2102 1e400bd
feat: 예매 취소 시 버튼 비활성화
sinji2102 2d10748
feat: 예매 조회 카드 내 취소 활성화
sinji2102 48b7c10
feat: 계좌번호 버튼 예매 확인 예정 시에만 오픈
sinji2102 2de68c2
chore: 콘솔로그 제거
sinji2102 43017e6
chore: 사용하지 않는 type 제거
sinji2102 684736d
chore: bookingStatus 관련 constants 파일으로 이동
sinji2102 81de15d
chore: status도 constants 파일으로 이동
sinji2102 906e443
Merge branch 'develop' of https://github.com/TEAM-BEAT/BEAT-Client in…
sinji2102 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
export const bookingStatusText = { | ||
CHECKING_PAYMENT: "입금 확인 예정", | ||
BOOKING_CONFIRMED: "입금 완료", | ||
BOOKING_CANCELLED: "예매 취소", | ||
}; | ||
|
||
export type bookingStatusTypes = keyof typeof bookingStatusText; | ||
|
||
export interface DefaultDepositProps { | ||
$status; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
p5) 이 부분 중복 코드가 가독성을 떨어뜨리는 것 같습니다.
이렇게 줄여보는건 어떤가용?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
좋아용
@sinji2102 신지 추후에 반영해주세용 ~
머지할게요!