From 5ac960d81c190563209aae22f136bc66bac29b62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A1n=20Ceniza?= <73916409+adriceniza@users.noreply.github.com> Date: Tue, 12 Nov 2024 12:38:57 +0000 Subject: [PATCH] fix(curriculum): Move blank line inside callback (#57134) --- .../657dfeef78fe0364bd241d7f.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/review-algorithmic-thinking-by-building-a-dice-game/657dfeef78fe0364bd241d7f.md b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/review-algorithmic-thinking-by-building-a-dice-game/657dfeef78fe0364bd241d7f.md index 41a8dd1407b..47f627659ca 100644 --- a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/review-algorithmic-thinking-by-building-a-dice-game/657dfeef78fe0364bd241d7f.md +++ b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/review-algorithmic-thinking-by-building-a-dice-game/657dfeef78fe0364bd241d7f.md @@ -495,8 +495,8 @@ keepScoreBtn.addEventListener("click", () => { if (round > 6) { setTimeout(() => { alert(`Game Over! Your total score is ${score}`); + }, 500); - } } else { alert("Please select an option or roll the dice");