Skip to content

Commit 0336a13

Browse files
committed
refact: remaindays 타입 수정
1 parent a71d294 commit 0336a13

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

design-system/ui/modals/QrModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ interface QrModalProps {
2121
orderStatus: string; // 티켓 승인 여부
2222
isCheckIn: boolean; // 참가자 체크인 여부
2323
isCountdownChecked: boolean;
24-
remainDays: "진행중" | "D-1" | "D-7" | "false"; //d-day
24+
remainDays: string; //d-day
2525
onClick: () => void;
2626
}
2727

src/pages/menu/ui/MyTicketPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ type Ticket = {
2020
startDate: string;
2121
ticketName: string;
2222
orderStatus: "COMPLETED" | "PENDING" | "CANCELED";
23-
remainDays: "진행중" | "D-1" | "D-7" | "false";
23+
remainDays: string;
2424
ticketPrice: number;
2525
ticketQrCode: string;
2626
checkIn: boolean;

0 commit comments

Comments
 (0)