style: 💄 restyle

This commit is contained in:
Jin 2025-03-28 01:53:32 +01:00
parent d4cd0e8eff
commit 04cbe9d3d1
3 changed files with 102 additions and 103 deletions

View File

@ -1,5 +1,3 @@
"use strict";
import sql from "../sql.js";
import optionService from "../options.js";
import myScryptService from "./my_scrypt.js";

View File

@ -23,6 +23,7 @@ function setRecoveryCodes(recoveryCodes: string) {
});
return false;
}
function getRecoveryCodes() {
if (!isRecoveryCodeSet()) {
return Array(8).fill("Keys not set")
@ -67,7 +68,7 @@ function verifyRecoveryCode(recoveryCodeGuess: string) {
}
function getUsedRecoveryCodes() {
if (!isRecoveryCodeSet()){
if (!isRecoveryCodeSet()) {
return Array(8).fill("Recovery code not set")
}