We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a71d294 commit 0336a13Copy full SHA for 0336a13
design-system/ui/modals/QrModal.tsx
@@ -21,7 +21,7 @@ interface QrModalProps {
21
orderStatus: string; // 티켓 승인 여부
22
isCheckIn: boolean; // 참가자 체크인 여부
23
isCountdownChecked: boolean;
24
- remainDays: "진행중" | "D-1" | "D-7" | "false"; //d-day
+ remainDays: string; //d-day
25
onClick: () => void;
26
}
27
src/pages/menu/ui/MyTicketPage.tsx
@@ -20,7 +20,7 @@ type Ticket = {
20
startDate: string;
ticketName: string;
orderStatus: "COMPLETED" | "PENDING" | "CANCELED";
- remainDays: "진행중" | "D-1" | "D-7" | "false";
+ remainDays: string;
ticketPrice: number;
ticketQrCode: string;
checkIn: boolean;
0 commit comments