diff --git a/react-whenMeet/src/components/MeetingInfoForm.js b/react-whenMeet/src/components/MeetingInfoForm.js
index 213e8c712b985b6efc71dd6b640dee12bcd09d50..7acc68e873a3ae22f8515be82c01e97d1ad416e3 100644
--- a/react-whenMeet/src/components/MeetingInfoForm.js
+++ b/react-whenMeet/src/components/MeetingInfoForm.js
@@ -148,7 +148,15 @@ function MeetingInfoForm() {
             />
           </div>
         </div>
-        <Button type="submit" text="시작하기" disabled={!isFormValid} />
+        {isFormValid ? (
+          <Button type="submit" text="시작하기" disabled={!isFormValid} />
+        ) : (
+          <Button
+            type="submit"
+            text="필수 선택 항목을 확인하세요"
+            disabled={!isFormValid}
+          />
+        )}
       </div>
     </form>
   );