We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08113ad commit e4540c3Copy full SHA for e4540c3
041-verify account UI/script.js
@@ -4,7 +4,7 @@ codes[0].focus();
4
5
codes.forEach((code, index) => {
6
code.addEventListener("keydown", (e) => {
7
- if (e.key >= 0 && e.key < 9) {
+ if (e.key >= 0 && e.key <= 9) {
8
codes[index].value = "";
9
setTimeout(() => {
10
codes[index + 1].focus();
0 commit comments