diff --git a/components/QuizCreator.tsx b/components/QuizCreator.tsx index b9fb968..726e527 100644 --- a/components/QuizCreator.tsx +++ b/components/QuizCreator.tsx @@ -149,17 +149,19 @@ export const QuizCreator: React.FC = ({ onFinalize, onCancel } placeholder={`Option ${idx + 1}`} /> - { - const newReasons = [...reasons]; - newReasons[idx] = e.target.value; - setReasons(newReasons); - }} - className="w-full p-2 ml-12 text-sm outline-none text-gray-500 bg-gray-50 rounded-lg placeholder:text-gray-400" - placeholder={isSelected ? "Why is this correct? (optional)" : "Why is this wrong? (optional)"} - /> +
+ { + const newReasons = [...reasons]; + newReasons[idx] = e.target.value; + setReasons(newReasons); + }} + className="w-full p-2 text-sm outline-none text-gray-500 bg-gray-50 rounded-lg placeholder:text-gray-400" + placeholder={isSelected ? "Why is this correct? (optional)" : "Why is this wrong? (optional)"} + /> +
) })}