Skip to content

Commit

Permalink
fix: formData 타입 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
pepperdad committed Jul 14, 2024
1 parent 61a8138 commit 1470b6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/book/typings/formData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ export interface FormData {
selectedValue: number | undefined;
purchaseTicketCount: number;
totalPaymentAmount: number;
bookerName?: string;
bookerPhoneNumber?: string;
bookerName: string;
bookerPhoneNumber: string;
// 비회원일 경우에만 추가될 속성
birthDate?: string;
password?: string;
Expand Down

0 comments on commit 1470b6b

Please sign in to comment.