Fix an error message to be more accurate

This commit is contained in:
2025-10-29 09:17:21 -04:00
parent 18ebebdcb7
commit f91374ed64

View File

@ -271,7 +271,7 @@ generateInputsBtn.addEventListener('click', () => {
const count = parseInt(moduleCountInput.value);
if (isNaN(count) || count < 2) {
alert('Please enter a valid number of modules between 2 and 12.');
alert('Please enter a valid number of modules above or equal to 2.');
return;
}
generateModuleInputs(count);