Skip to content

Commit

Permalink
Correct display of attempt counter, it was off by 1
Browse files Browse the repository at this point in the history
  • Loading branch information
SavageCore committed Sep 21, 2023
1 parent 88de5a6 commit 274d76e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/App/index.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@
{combinations[currentCombination].join(' ')}
</div>
<div>
Attempt {currentCombination} of {combinations.length}
Attempt {currentCombination + 1} of {combinations.length}
</div>
<!-- Next button -->
<div>
Expand Down

0 comments on commit 274d76e

Please sign in to comment.