feat: add wallet deletion from settings (closes #13) #14

Merged
sneak merged 7 commits from feat/delete-wallet into main 2026-02-27 23:04:45 +01:00
Showing only changes of commit 2b0b889b01 - Show all commits

View File

@@ -283,7 +283,7 @@ function init(ctx) {
// Verify password against the wallet's encrypted data
try {
await decryptWithPassword(wallet.encrypted, pw);
await decryptWithPassword(wallet.encryptedSecret, pw);
} catch (_e) {
showFlash("Wrong password.");
return;