diff options
| author | tobtoht <tob@featherwallet.org> | 2025-04-06 09:39:39 +0000 |
|---|---|---|
| committer | tobtoht <tob@featherwallet.org> | 2025-04-06 09:39:39 +0000 |
| commit | ecb76b841466ed2179a4c4c1a99610d8c5ccb0b6 (patch) | |
| tree | a4e009b6fccdc95d9f85fe30984fc416ab525f52 /wizard | |
| parent | 24b4e0209f6e668ca6dad12f76f0f9ec8bdfd8c7 (diff) | |
| parent | da71a00be29b9414124a67f6e97cfcabe5a43519 (diff) | |
| download | monzero-gui-ecb76b841466ed2179a4c4c1a99610d8c5ccb0b6.tar.gz monzero-gui-ecb76b841466ed2179a4c4c1a99610d8c5ccb0b6.tar.xz monzero-gui-ecb76b841466ed2179a4c4c1a99610d8c5ccb0b6.zip | |
Merge pull request #4418
da71a00b Remove unused JS variables (b4n6-b4n6)
Diffstat (limited to 'wizard')
| -rw-r--r-- | wizard/WizardAskPassword.qml | 2 | ||||
| -rw-r--r-- | wizard/WizardRestoreWallet1.qml | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/wizard/WizardAskPassword.qml b/wizard/WizardAskPassword.qml index 3c1f3144..ca9c94c3 100644 --- a/wizard/WizardAskPassword.qml +++ b/wizard/WizardAskPassword.qml @@ -47,7 +47,7 @@ ColumnLayout { return passwordInput.text === passwordInputConfirm.text; } - function calcPasswordStrength(inp) { + function calcPasswordStrength() { if(!progressLayout.visible) return; if(passwordInput.text.length <= 1){ root.passwordFill = 0; diff --git a/wizard/WizardRestoreWallet1.qml b/wizard/WizardRestoreWallet1.qml index e4fde848..61818c3c 100644 --- a/wizard/WizardRestoreWallet1.qml +++ b/wizard/WizardRestoreWallet1.qml @@ -46,7 +46,6 @@ Rectangle { return false; } - var valid = false; if(wizardController.walletRestoreMode === "keys") { return wizardWalletInput.verify() && wizardRestoreWallet1.verifyFromKeys(); } else if(wizardController.walletRestoreMode === "seed") { |
