From f91374ed64b934a5279b81c80e8bcb6cc5c229c6 Mon Sep 17 00:00:00 2001 From: Moonlit Productions Date: Wed, 29 Oct 2025 09:17:21 -0400 Subject: [PATCH] Fix an error message to be more accurate --- script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script.js b/script.js index e6bc672..fde485a 100644 --- a/script.js +++ b/script.js @@ -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);