Skip to content

Commit

Permalink
style: update stale type name
Browse files Browse the repository at this point in the history
  • Loading branch information
greenblues1190 committed Oct 10, 2022
1 parent 3abd533 commit a547e86
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import CheckBox from "../form/CheckBox/CheckBox";
import { RecruitmentItem } from "../../../types/domains/recruitments";
import { Answer, ApplicationForm } from "../../../types/domains/applicationForms";

type ApplicationPreviewModalWindowProps = {
type ApplicationPreviewModalProps = {
recruitmentItems: RecruitmentItem[];
answers: Answer["contents"][];
referenceUrl: ApplicationForm["referenceUrl"];
Expand All @@ -18,7 +18,7 @@ const ApplicationPreviewModal = ({
answers,
referenceUrl,
onClickConfirmButton,
}: ApplicationPreviewModalWindowProps) => {
}: ApplicationPreviewModalProps) => {
const { closeModal } = useModalContext();
const [isChecked, setIsChecked] = useState(false);

Expand Down

0 comments on commit a547e86

Please sign in to comment.