Skip to content

Commit

Permalink
refactor: ticketCount type 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
colorkite10 committed Dec 1, 2023
1 parent 8f956b1 commit 023ff08
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Modals/FormDetailModal/FormDetailModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ interface FormDetailModalProps {
onClose: () => void;
options: { title: string; content: string }[];
nthForm: number;
ticketCount: string | null;
ticketCount?: string;
}

const FormDetailModal = ({ onClose, options, nthForm, ticketCount }: FormDetailModalProps) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ interface SubmittedFormProps {
status: EventStatus;
dateTime: string;
};
ticketCount: string | null;
ticketCount?: string;
managed: boolean;
}

Expand Down

0 comments on commit 023ff08

Please sign in to comment.