fix: 퀴즈 생성 시 빈 배열을 보내지 않도록 수정

This commit is contained in:
정기영 2024-08-09 17:54:46 +09:00
parent 189f786653
commit cb0d1e4973

View File

@ -8,6 +8,11 @@ export default function QuizsetWritePage() {
const handleSubmit = async (e, title, quizzes) => {
e.preventDefault();
console.log(quizzes);
if (quizzes.length === 0) {
window.alert('퀴즈가 없는 퀴즈셋은 생성할 수 없습니다');
return;
}
const images = [];
const quizContents = [];