milwright commited on
Commit
07a676b
Β·
1 Parent(s): 138ffaa

Fix confusing level advancement message display

Browse files
Files changed (1) hide show
  1. src/app.js +1 -1
src/app.js CHANGED
@@ -166,7 +166,7 @@ class App {
166
  if (roundsCompleted >= 2) {
167
  message += ` - Excellent! Advancing to Level ${this.game.currentLevel + 1}! πŸŽ‰`;
168
  } else {
169
- message += ` - Great job! ${roundsCompleted}/2 rounds completed for Level ${this.game.currentLevel + 1}`;
170
  }
171
  this.elements.result.className = 'mt-4 text-center font-semibold text-green-600';
172
  } else {
 
166
  if (roundsCompleted >= 2) {
167
  message += ` - Excellent! Advancing to Level ${this.game.currentLevel + 1}! πŸŽ‰`;
168
  } else {
169
+ message += ` - Great job! ${roundsCompleted}/2 rounds completed for Level ${this.game.currentLevel}`;
170
  }
171
  this.elements.result.className = 'mt-4 text-center font-semibold text-green-600';
172
  } else {