Fix numbering of recovery codes when downloading or copying them
Closes #33933 Signed-off-by: NoseSnatcher <nosesnatcher@ffrwnd.me>
This commit is contained in:
parent
41ee68611f
commit
da34571769
1 changed files with 1 additions and 1 deletions
|
@ -110,7 +110,7 @@
|
||||||
for (let i = 0; i < recoveryCodes.length; i++) {
|
for (let i = 0; i < recoveryCodes.length; i++) {
|
||||||
const recoveryCodeLiElement = recoveryCodes[i].innerText;
|
const recoveryCodeLiElement = recoveryCodes[i].innerText;
|
||||||
<#noparse>
|
<#noparse>
|
||||||
recoveryCodeList += `${i}: ${recoveryCodeLiElement}\r\n`;
|
recoveryCodeList += `${i+1}: ${recoveryCodeLiElement}\r\n`;
|
||||||
</#noparse>
|
</#noparse>
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue