Skip to content
Snippets Groups Projects
Commit 0eaa1157 authored by 이권민's avatar 이권민
Browse files

[EDIT] isFormValid 조건 추가

parent e9ae9524
Branches
No related tags found
No related merge requests found
......@@ -92,7 +92,10 @@ function MeetingInfoForm() {
}
};
const isFormValid = meetingPurpose.trim() !== "" && startNum < endNum;
const isFormValid =
meetingPurpose.trim() !== "" &&
meetingPurpose.trim() !== "선택" &&
startNum < endNum;
return (
<form onSubmit={handleSubmit}>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment